View source: R/01_flowgraph_modifiers.R
fg_extract_samples | R Documentation |
Extracts or removes a specified set of samples from a flowGraph object.
fg_extract_samples(fg, sample_ids, rm_summary = TRUE)
fg |
flowGraph object. |
sample_ids |
A string vector of sample id's that the user wants to
keep in |
rm_summary |
A logical indicating whether or not to clear summary. |
The summaries in fg
will not be modified;
we recommend the user recalculates them.
flowGraph object.
flowGraph-class
fg_get_feature_desc
fg_merge
fg_extract_phenotypes
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_samples(fg0, fg_get_meta(fg0)$id[1:5])
fg_get_feature_desc(fg)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.