multiFilter-class {flowCore} | R Documentation |
Class to represent list of filter
Objects can be created by calls of the form new("multiFilter", ...)
.
populations
:"character"
vector to identify
the collection of filters.filters
:"list"
. Each element
of the list corresponds to a filterfilterId
:filter
. This is typically user specified but can be
automatically deduced by certain filter operations, particularly
boolean and set operations.parameters
:
Class "filter"
, directly.
No methods defined with class "multiFilter" in the signature.
B. Ellis
showClass("multiFilter") R1 <- rectangleGate(filterId="rectangleGateI","FSC-H"=c(1,50),"SSC-H"=c(50,800)) R2 <- rectangleGate(filterId="rectangleGateII",list("FSC-H"=c(1,50),"SSC-H"=c(50,800))) fil <- new("multiFilter",populations = "Pop1", filters=c(R1,R2), filterId = "filterSchemaI", parameters = unique(c(R1@parameters, R1@parameters)))