Y-axes of Volcano plots
1
0
Entering edit mode
4.7 years ago
Bioinfo_2006 ▴ 160

I have a DESeq2 object and generating a volcano plot of up, down and non-sig genes

par(mar=c(5,5,5,5), cex=1.0, cex.main=1.4, cex.axis=1.4, cex.lab=1.4)
topT <- as.data.frame(deseq2object)
with(topT, plot(log2FoldChange, -log10(padj), pch=20, main="Volcano plot", cex=1.0, xlab=bquote(~Log[2]~fold~change),ylab=bquote(~-log[10]~P~value)))
with(subset(topT, padj<0.05 & log2FoldChange>2), points(log2FoldChange, -log10(padj), pch=20, col="red", cex=0.5))
with(subset(topT, padj<0.05 & log2FoldChange<=-2), points(log2FoldChange, -log10(padj), pch=20, col="green",cex=0.5))

The Y-axes looks weird to me, is this normal?Volcano-plot

enhancedvolcano volcanoplots R • 2.0k views
ADD COMMENT
1
Entering edit mode

This plot suggests that some genes have an adjusted p < 10e-300... That is pretty low, you can check in your data if that is true.

ADD REPLY
0
Entering edit mode

Yes, the data does have pretty low values

ADD REPLY
0
Entering edit mode

What do you mean by "weird", from a visual standpoint or rather as Benn says these absurdly small (or here high) p-values?

ADD REPLY
0
Entering edit mode
4.7 years ago
Buffo ★ 2.4k

It looks like you do not have enough replicates or the dispersion between them is high.

ADD COMMENT

Login before adding your answer.

Traffic: 1970 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6