pick_parameters-methods: Pick channel names

Description Usage Arguments Details Value Author(s) Examples

Description

Extract all channel names from a flowFrame object or column names from a matrix except those specified in a provided ignore list.

Usage

1
    pick_parameters(object, ignore)

Arguments

object

Object of class flowFrame or a matrix.

ignore

A vector of channel names that we want to ignore

Details

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.

Value

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.

Author(s)

Josef Spidlen, Wayne Moore, Faysal El Khettabi

Examples

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)

flowQB documentation built on May 6, 2019, 3:05 a.m.