transformFilter-class {flowCore} | R Documentation |
The transformFilter
class is a mechanism for including one or more variable
transformations into the filtering process. Using a special case of transform
we can introduce transformations inline with the filtering process eliminating the need to
process flowFrame
objects before applying a filter.
Objects of this type are not generally created ``by hand''. They are a side effect of
the use of the %on%
method with a filter
object on the
left hand side and a transformList
on the right hand side.
transforms
:flowFrame
filter
:filterId
:parameters
:
Class "filter"
, directly.
B. Ellis
samp <- read.FCS(system.file("extdata", "0877408774.B08", package="flowCore")) ## Gate this object after log transforming the forward and side ## scatter variables filter(samp, norm2Filter("FSC-H", "SSC-H", scale.factor=2) %on% transform("FSC-H"=log,"SSC-H"=log))