Description Usage Arguments Value Author(s) See Also Examples
View source: R/analysisRNA_retrieveDESeq2Results.R
Retrieve the results from a DESeq2-analysis using IHW and LFC shrinkage.
1 | retrieveDESeq2Results(DESeq2.Object, contrast, nThreads = 20)
|
DESeq2.Object |
(DESeqDataSet): DESeqDataSet of a DESeq2 analysis. |
contrast |
(character): Contrast of the resulst, e.g.: c('testVariable', 'groupA', 'groupb') |
nThreads |
(integer): Number of threads using during multi-threading |
(tibble) Tibble containing the DESeq2 results.
Job van Riet j.vanriet@erasmusmc.nl
Other RNA-Seq:
importArriba()
,
runArriba()
1 2 3 | DESeq2.allSamples <- DESeq2::DESeqDataSetFromMatrix(countData = countMatrix, colData = samples.meta[match(colnames(countMatrix), samples.meta$sample),], design = ~treatmentType)
DESeq2.allSamples <- DESeq2::DESeq(DESeq2.allSamples, test = 'Wald', parallel = TRUE, BPPARAM = BiocParallel::MulticoreParam(workers = 20))
retrieveDESeq2Results(DESeq2.allSamples)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.