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