subset_voom | R Documentation |
Subset voom object
subset_voom(
dat,
lib_keep = NULL,
lib_remove = NULL,
lib_filter = NULL,
gene_keep = NULL,
libraryID = "libID"
)
dat |
limma EList object to subset |
lib_keep |
Character vector of library IDs to keep (Default NULL) |
lib_remove |
Character vector of library IDs to remove (Default NULL) |
lib_filter |
Character string to use for filtering libraries to keep (Default NULL) |
gene_keep |
Character vector of genes to keep (Default NULL) |
libraryID |
Character string specifying the name of the column with library IDs (Default "libID") |
limma EList object
dat.voom <- RNAetc::example.voom
subset_voom(dat.voom, lib_keep = c("lib1","lib2"))
subset_voom(dat.voom, lib_remove = c("lib1","lib2"))
subset_voom(dat.voom, lib_filter = "asthma == 'healthy' & virus == 'none'")
subset_voom(dat.voom, gene_keep = c("ENSG00000000460", "ENSG00000001460"))
subset_voom(dat.voom, lib_keep = c("lib1","lib2"),
gene_keep = c("ENSG00000000460", "ENSG00000001460"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.