View source: R/deseq2_find_all_markers.R
deseq2_find_all_markers | R Documentation |
Perform DESeq2's pairwise wald tests, find specifically up or down-regulated markers for each group.
deseq2_find_all_markers(
dds,
grp,
direction = c("up", "down"),
design = NULL,
add.means = !is.null(grp),
adjust.method = "BH",
ncore = 1,
shrunken = TRUE
)
dds |
DESeqDataSet object. |
grp |
Vector of sample groups. These must be valid variable names in R and the same length as
|
direction |
Either "up" or "down" or both |
design |
Design matrix of the experiment, with rows corresponding to samples and columns to coefficients to be estimated. |
add.means |
Logical indicating if (unweighted) group means per row should be added to the output. |
adjust.method |
Method used to adjust the p-values for multiple testing. Options, in increasing conservatism,
include |
ncore |
Number of cores to use. |
shrunken |
logical, whether to shrink the log fold-change |
Data frame.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.