Description Usage Arguments Value Examples
View source: R/runDEAnalysis.R
Perform differential expression analysis on SCE with specified method Method supported: 'MAST', 'DESeq2', 'Limma', 'ANOVA'
1 | runDEAnalysis(method = c("MAST", "DESeq2", "Limma", "ANOVA"), ...)
|
method |
A single character for specific method. Choose from
|
... |
Other arguments passed to specific functions. Refer to
|
Input SCE object with metadata(inSCE)
updated with name
"diffExp"
as a list
object. Detail refers to the four child
functions.
1 2 3 4 5 | data(scExample, package = "singleCellTK")
sce <- subsetSCECols(sce, colData = "type != 'EmptyDroplet'")
sce <- runDEAnalysis(inSCE = sce, groupName1 = "Sample1", method = "DESeq2",
groupName2 = "Sample2", index1 = 1:20, index2 = 21:40,
analysisName = "DESeq2")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.