Description Usage Arguments Details Value Author(s) Examples
Extract all channel names from a flowFrame object or column names from a matrix except those specified in a provided ignore list.
1 | pick_parameters(object, ignore)
|
object |
Object of class |
ignore |
A vector of channel names that we want to ignore |
This method simply looks at all channel names in the provided flowFrame object or all column names of a matrix, then subtracts those specified in the ignore list and returns the resulting vector of channel/column names.
A vector of character strings containing channel names of channels that were in the input flowFrame object (or columns of the input matrix) but were not included in the provided ignore list.
Josef Spidlen, Wayne Moore, Faysal El Khettabi
1 2 3 4 5 6 7 | library('flowCore')
library('flowQBData')
fcsFilePath <- system.file("extdata", "SSFF_LSRII", "Other_Tests",
"933745.fcs", package="flowQBData")
myFlowFrame <- read.FCS(fcsFilePath)
ignore <- c("Time", "FSC-H", "FSC-A", "FSC-W", "SSC-H", "SSC-A", "SSC-W")
fluorescences <- pick_parameters(myFlowFrame, ignore)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.