multiFilter-class {flowCore}R Documentation

Class to represent list of filter

Description

Class to represent list of filter

Objects from the Class

Objects can be created by calls of the form new("multiFilter", ...).

Slots

populations:
A "character" vector to identify the collection of filters.
filters:
Object of class "list". Each element of the list corresponds to a filter
filterId:
A character vector that identifies this filter. This is typically user specified but can be automatically deduced by certain filter operations, particularly boolean and set operations.
parameters:
A character vector that identifies the name of the parameters that this filter operates upon.

Extends

Class "filter", directly.

Methods

No methods defined with class "multiFilter" in the signature.

Author(s)

B. Ellis

See Also

filter

Examples

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)))

[Package flowCore version 1.0.2 Index]