Description Usage Arguments Value Examples
View source: R/cytof_preProcess.R
Extract the FCS expresssion data with preprocessing of compensation (for FCM data only)
and transformation. Transformtion methods includes autoLgcl
, cytofAsinh
,
logicle
(customizable) and arcsinh
(customizable).
1 2 3 4 |
fcsFile |
The name of the FCS file. |
verbose |
If |
comp |
If |
transformMethod |
Data Transformation method, including |
scaleTo |
Scale the expression to a specified range c(a, b), default is NULL. |
q |
Quantile of negative values removed for auto w estimation, default is 0.05, parameter for autoLgcl transformation. |
l_w |
Linearization width in asymptotic decades, parameter for logicle transformation. |
l_t |
Top of the scale data value, parameter for logicle transformation. |
l_m |
Full width of the transformed display in asymptotic decades, parameter for logicle transformation. |
l_a |
Additional negative range to be included in the display in asymptotic decades, parameter for logicle transformation. |
a_a |
Positive double that corresponds to the base of the arcsinh transformation, |
a_b |
Positive double that corresponds to a scale factor of the arcsinh transformation, |
a_c |
Positive double that corresponds to another scale factor of the arcsinh transformation, |
A transformed expression data matrix, row names added as filename_cellID
, column names added as name<desc>
.
1 2 3 | d <- system.file('extdata',package='cytofkit')
fcsFile <- list.files(d,pattern='.fcs$',full=TRUE)
transformed <- cytof_exprsExtract(fcsFile)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.