View source: R/setFcsFilePanel.R
setFcsFilePanel | R Documentation |
Updates the panel properties of an FCS file.
setFcsFilePanel(experimentId, fcsFileId, panelName, panel)
experimentId |
ID of experiment. |
fcsFileId |
ID of FCS file. |
panelName |
Name of panel. |
panel |
List of channel properties. |
A panel must be specified as a list of lists. Each inner list must have at
least channel
and index
properties, and may optionally have a
reagent
property.
The index
value corresponds to the parameter index (i.e. the n in
"$PnN" from the FCS file header). This property allows the list of channels
to be in any order.
The channel
value corresponds to the channel name. Channel names are
used for matching channels between FCS files, gates, scales and compensations.
The reagent
value is used for various displays, including plot axis
labels, and is typically the reagent description (e.g. "CD3-PacBlu").
The panelName
property is used to group files by panel.
## Not run:
panel <- list(
list("index" = 1, "channel" = "FSC-A"),
list("index" = 7, "channel" = "Blue530-A", "reagent" = "CD3")
)
setFcsFilePanel(experimentId, fcsFileId, "Panel 1", panel)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.