transformView-class {flowCore} | R Documentation |
Class and method to capture the result of transformation operations in a flow cytometry workflow.
transformView(workflow, ID=paste("transViewRef", guid(), sep="_"), name="default", action, data)
workflow |
An object of class |
ID |
A unique identifier of the view, most likely created by
using the internal |
name |
A more human-readable name of the view. |
data, action |
References to the data and
|
A reference to the transformView
that is created inside the
workFlow
environment as a side effect of calling the
add
method.
A transformView
object for the constructor.
Objects should be created using the add
method, which creates a
transformView
from a transform
object and
directly assigns it to a workFlow
. Alternatively, one
can use the transformView
constructor function for more programmatic
access.
ID
:Object of class "character"
. A unique
identifier for the view.
name
:Object of class "character"
. A more
human-readable name
action
:Object of class "fcActionReference"
. A
reference to the
actionItem
that generated
the view.
env
:Object of class "environment"
. The
evaluation environment in the workFlow
.
data
:Object of class "fcDataReference"
A
reference to the data that is associated to the view.
Class "view"
, directly.
signature(symbol = "transformView", envir =
"workFlow", subSymbol = "character")
: Remove a
transformView
from a workFlow
. This method is
recursive and will also remove all dependent views
and
actionItems
.
Florian Hahne
workFlow
, view
,
gateView
,
compensateView
,
actionItem
showClass("view")