results_all | R Documentation |
Extract all possible contrasts and annotate result tables from a DESeq object. Currently supports simple designs with a single variable.
results_all(
object,
biomart,
vs = "all",
subset,
relevel,
alpha = 0.05,
add_columns,
trt,
lfcShrink = "normal",
simplify = TRUE,
...
)
object |
a DESeqDataSet |
biomart |
annotations from |
vs |
either compare all vs. all (default) or all vs specific treatment like control, or see note. |
subset |
index to subset all pairwise comparisons, try |
relevel |
Levels to compare, if missing then levels(dds$trt) |
alpha |
the significance cutoff for the adjusted p-value cutoff (FDR) |
add_columns |
a vector of biomart columns to add to result table, default gene_name, biotype, chromosome, description and human_homolog if present |
trt |
Compare groups within trt group, default is first term in the design formula |
lfcShrink |
shrink fold changes using |
simplify |
return a tibble if only 1 contrast present |
... |
additional options passed to |
A list of tibbles for each contrast
If you combine factors of interest into a single group following section 3.3 in the DESeq2 vignette,
you can set vs = "combined" to limit the comparisons. See check_contrasts
for details.
Chris Stubben
## Not run:
library(hciRdata)
res <- results_all(pasilla$dds, fly98)
res
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.