readFCSdataset {IFC} | R Documentation |
FCS Dataset Parser
Description
Helper to parse dataset from Flow Cytometry Standard (FCS) compliant files.
Usage
readFCSdataset(fileName, options, display_progress = TRUE, ...)
Arguments
fileName |
path to file. |
options |
list of options used to parse FCS file. It should contain (otherwise, it will be filled with the default values listed below): |
display_progress |
whether to display a progress bar. Default is TRUE. |
... |
other arguments to be passed. |
Details
'options' may be tweaked according to file type, instrument and software used to generate it.
Default 'options' should allow to read most files.
'options' members with the exception of 'header' may be passed thanks to '...'.
Value
a list containing:
- options, list of 'options' used
- header, list of header information corresponding to 'options'
- delimiter, unique character used to separate keyword-value pairs
- text, list of keywords values,
- data, data.frame of values.