Description Usage Arguments Value Examples
This function will load the first of the input FCS files and extract the measured parameters as well as their labels. For each of these, it will ask the user whether it is part of the backbone measurements (which will be used as a predictor variable in regressions models), Infinity (exploratory) measurements (usually PE-conjugated or APC-conjugated, used as dependent/target variable in regressions) or discarded (e.g. for parameter such as Time, Sample IDs, Event number IDs, ...).
1 |
files |
character vector of paths to FCS files |
A data.frame
1 2 3 4 5 6 7 8 | data(steady_state_lung)
dir <- tempdir()
fcs_tmp <- file.path(dir, "tmp.fcs")
library(flowCore)
write.FCS(steady_state_lung[[1]], file <- fcs_tmp)
if(interactive()){
select_backbone_and_exploratory_markers(fcs_tmp)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.