Volcano
group <- lfcShrink(dds, coef = "Group_MIA_vs_CON", type = 'apeglm')
## using 'apeglm' for LFC shrinkage. If used in published research, please cite:
## Zhu, A., Ibrahim, J.G., Love, M.I. (2018) Heavy-tailed prior distributions for
## sequence count data: removing the noise and preserving large differences.
## Bioinformatics. https://doi.org/10.1093/bioinformatics/bty895
group$symbol <- mcols(dds)$symbol
drug <- lfcShrink(dds, coef = "Drug_PLX_vs_CON", type = 'apeglm')
## using 'apeglm' for LFC shrinkage. If used in published research, please cite:
## Zhu, A., Ibrahim, J.G., Love, M.I. (2018) Heavy-tailed prior distributions for
## sequence count data: removing the noise and preserving large differences.
## Bioinformatics. https://doi.org/10.1093/bioinformatics/bty895
drug$symbol <- mcols(dds)$symbol
trt <- lfcShrink(dds, coef = "Trt_LPS_vs_SAL", type = 'apeglm')
## using 'apeglm' for LFC shrinkage. If used in published research, please cite:
## Zhu, A., Ibrahim, J.G., Love, M.I. (2018) Heavy-tailed prior distributions for
## sequence count data: removing the noise and preserving large differences.
## Bioinformatics. https://doi.org/10.1093/bioinformatics/bty895
trt$symbol <- mcols(dds)$symbol
EnhancedVolcano(group, lab = group$symbol, x = 'log2FoldChange', y = 'pvalue',
title = 'Group_MIA_vs_CON', subtitle = "", pCutoffCol = 'padj', ylim = c(0,6),
xlim = c(-2,2), colAlpha = 1, col=c('grey', 'grey', 'black', 'cornflowerblue'),
pCutoff = 0.1, FCcutoff = 0.5, pointSize = 2.0, labSize = 3)
## Warning: Ignoring unknown parameters: xlim, ylim
EnhancedVolcano(drug, lab = drug$symbol, x = 'log2FoldChange', y = 'pvalue',
title = 'Drug_PLX_vs_CON', subtitle = "", pCutoffCol = 'padj',
colAlpha = 1, col=c('grey', 'grey', 'black', 'black'), ylim=c(0,20), xlim=c(-2,3),
pCutoff = 0.05, FCcutoff = 0.5, pointSize = 2.0, labSize = 3)
## Warning: Ignoring unknown parameters: xlim, ylim
EnhancedVolcano(trt, lab = trt$symbol, x = 'log2FoldChange', y = 'pvalue',
title = 'Trt_LPS_vs_SAL', subtitle = "", pCutoffCol = 'padj',
colAlpha = 1, col=c('grey', 'grey', 'black', 'black'),
pCutoff = 0.05, FCcutoff = 0.5, pointSize = 2.0, labSize = 3)
## Warning: Ignoring unknown parameters: xlim, ylim