View source: R/saveDiffExResults.R
| saveDiffExResults | R Documentation |
saveDiffExResults Save Differential Expression Results with a custom name.
saveDiffExResults(inSCE, diffex, name, method)
inSCE |
Input SCtkExperiment object. Required |
diffex |
results table saved from the differential expression analysis. Required |
name |
name of the result to be saved under in rowData(). Required |
method |
name of the diffex method used to generate the results. Options are DESeq2, limma and ANOVA. Required |
a new SCE object with the diffex result saved in the rowData using the "name"
data("mouseBrainSubsetSCE")
res <- scDiffEx(mouseBrainSubsetSCE,
useAssay = "logcounts",
condition = "level1class",
ntop = length(rownames(mouseBrainSubsetSCE)),
usesig = FALSE,
diffexmethod = "limma")
sceObj <- saveDiffExResults(mouseBrainSubsetSCE, res, "Limma_Level1class", "limma")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.