Description Usage Arguments Value Author(s)
View source: R/findMarkerDiffExp.R
Find the marker gene set for each cluster With an input SingleCellExperiment object and specifying the clustering labels, this function iteratively call the differential expression analysis on each cluster against all the others.
1 2 3 4 5 6 7 8 9 | findMarkerDiffExp(
inSCE,
useAssay = "logcounts",
method = "MAST",
cluster = "cluster",
covariates = NULL,
log2fcThreshold = 0.25,
fdrThreshold = 0.05
)
|
inSCE |
SingleCellExperiment inherited object. |
useAssay |
character. A string specifying which assay to use for the
MAST calculations. Default |
method |
A single character for specific differential expression
analysis method. Choose from 'MAST', 'DESeq2', 'Limma', 'ANOVA'. Default
|
cluster |
One single character to specify a column in
|
covariates |
A character vector of additional covariates to use when
building the model. All covariates must exist in
|
log2fcThreshold |
Only out put DEGs with the absolute values of log2FC
larger than this value. Default |
fdrThreshold |
Only out put DEGs with FDR value smaller than this
value. Default |
The input SingleCellExperiment object with
metadata(inSCE)$findMarker
updated with a data.table of the up-
regulated DEGs for each cluster.
Yichen Wang
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.