subset_expt | R Documentation |
Sometimes an experiment has too many parts to work with conveniently, this operation allows one to break it into smaller pieces.
subset_expt(
expt,
subset = NULL,
ids = NULL,
nonzero = NULL,
coverage = NULL,
print_excluded = TRUE
)
expt |
Expt chosen to extract a subset of data. |
subset |
Valid R expression which defines a subset of the design to keep. |
ids |
List of sample IDs to extract. |
nonzero |
Look for a minimal number of nonzero genes. |
coverage |
Request a minimum coverage/sample rather than text-based subset. |
print_excluded |
Print out the samples which are removed via this filter? |
metadata Expt class which contains the smaller set of data.
[Biobase] [pData()] [exprs()] [fData()]
## Not run:
smaller_expt <- expt_subset(big_expt, "condition=='control'")
all_expt <- expt_subset(expressionset, "") ## extracts everything
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.