transformActionItem-class {flowCore} | R Documentation |
Class and method to capture transformation operations in a flow cytometry workflow.
transformActionItem(ID = paste("transActionRef", guid(), sep = "_"), name=paste("action", identifier(get(transform)), sep = "_"), parentView, transform, workflow)
workflow |
An object of class workFlow for which a
view is to be created. |
ID |
A unique identifier of the view, most likely created by
using the internal guid function. |
name |
A more human-readable name of the view. |
parentView, transform |
References to the parent
view and transform objects,
respectively. |
transformActionItems
provide a means to bind transformation
operations in a workflow. Each transformActionItem
represents a
single transform
.
A reference to the transformActionItem
that is created inside the
workFlow
environment as a side effect of calling the
add
method.
A transformActionItem
object for the constructor.
Objects should be created using the add
method, which creates a
transformActionItem
from a transform
object
and directly assigns it to a workFlow
. Alternatively,
one can use the transformActionItem
constructor function for
more programmatic access.
transform
:"fcTransformReference"
. A reference to the
transform
object that is used for the
transformation operation. ID
:"character"
. A unique
identifier for the actionItem
. name
:"character"
. A more
human-readable nameparentView
:"fcViewReference"
. A reference to the parent
view
the transformActionItem
is applied on. env
:"environment"
. The
evaluation environment in the workFlow
.
Class "actionItem"
, directly.
signature(x = "transformActionItem")
: Print
details about the object. signature(symbol = "transformActionItem", envir =
"workFlow", subSymbol = "character")
: Remove a
transformActionItem
from a workFlow
. This
method is recursive and will also remove all dependent
views
and actionItems
.signature(object = "transformActionItem")
: Print
details about the object. Florian Hahne
workFlow
,
actionItem
,
gateActionItem
,
compensateActionItem
,
view
showClass("view")