fg_extract_phenotypes {flowGraph} | R Documentation |
Extracts or removes a specified set of phenotypes from a flowGraph object.
fg_extract_phenotypes(fg, phenotypes)
fg |
flowGraph object. |
phenotypes |
A string vector of phenotype or cell population name labels. |
The summary
in fg
will not be modified;
we recommend users recalculate them.
flowGraph object.
flowGraph-class
fg_get_feature_desc
fg_merge
fg_extract_samples
fg_merge_samples
no_cores <- 1 data(fg_data_pos30) fg0 <- flowGraph(fg_data_pos30$count, class=fg_data_pos30$meta$class, prop=FALSE, specenr=FALSE, no_cores=no_cores) fg_get_feature_desc(fg0) fg <- fg_extract_phenotypes(fg0, fg_get_graph(fg0)$v$phenotype[1:10]) fg_get_feature_desc(fg)