Description Usage Arguments Value Author(s) See Also Examples
Draw an interactive MD plot
1 |
x |
the DE object to plot. |
... |
additional arguments affecting the plots produced. See specific methods for detailed arguments. |
Draws a two-panel interactive MD plot in an html page. The left plot shows the log-fold-change vs average expression. The right plot shows the expression levels of a particular gene of each sample. Hovering over points on left plot will plot expression level for corresponding gene, clicking on points will fix the expression plot to gene. Clicking on rows on the table has the same effect as clicking on the corresponding gene in the plot.
Shian Su
glMDPlot.default
, glMDPlot.DGELRT
,
glMDPlot.DGEExact
, glMDPlot.MArrayLM
,
glMDPlot.DESeqDataSet
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | library(limma)
library(edgeR)
data(lymphomaRNAseq)
x <- lymphomaRNAseq
sel <- rowSums(cpm(x$counts)>0.5)>=3
x <- x[sel,]
genotype <- relevel(x$samples$group, "Smchd1-null")
x <- calcNormFactors(x, method="TMM")
des <- model.matrix(~genotype)
## Apply voom with sample quality weights and fit linear model
v <- voomWithQualityWeights(x, design=des, plot=FALSE)
vfit <- lmFit(v,des)
## Apply treat relative to a fold-change of 1.5
vtfit <- treat(vfit,lfc=log2(1.5))
vfit <- eBayes(vfit)
results <- decideTests(vfit,p.value=0.01)
glMDPlot(vfit, counts=x$counts, anno=x$genes, groups=genotype, samples=1:7,
status=results[,2], main="MD plot: Wild-type vs Smchd1",
display.columns=c("Symbols", "GeneID", "GeneName"),
folder="Smchd1-Lymphoma")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.