GetChannels | R Documentation |
Get channel names for an array of markers, given a flowFrame or a FlowSOM
object. As available in "name". grep
is used to look for the
markers. Other regex can be added.
GetChannels(object, markers, exact = TRUE)
object |
The flowFrame or the FlowSOM object of interest |
markers |
Vector with markers or channels of interest. Also accepts the index of the marker found in the object. |
exact |
If TRUE (default), the grep pattern will be extended to start with ^\\Q and end with \\E$, so only exact matches are possible. |
Corresponding channel names
GetMarkers
# Read the flowFrame
fileName <- system.file("extdata", "68983.fcs", package = "FlowSOM")
ff <- flowCore::read.FCS(fileName)
GetChannels(ff, c("FSC-A", "CD3", "FITC-A"))
GetMarkers(ff, c("FSC-A", "CD3", "FITC-A"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.