Description Usage Arguments Value Examples
This function joins the output of degMean
,
degVar
and degMV
in a
single plot. See these functions for further information.
1 |
counts |
Matrix with counts for each samples and each gene. |
groups |
Character vector with group name for each sample in the same order than counts column names. |
object |
DEGSet oobject. |
pvalue |
pvalues of DEG analysis. |
ggplot2 object
1 2 3 4 5 6 7 8 9 | data(humanGender)
library(DESeq2)
idx <- c(1:10, 75:85)
dds <- DESeqDataSetFromMatrix(assays(humanGender)[[1]][1:1000, idx],
colData(humanGender)[idx,], design=~group)
dds <- DESeq(dds)
res <- results(dds)
degQC(counts(dds, normalized=TRUE), colData(dds)[["group"]],
pvalue = res[["pvalue"]])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.