Entering edit mode
5.3 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?
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.
Yes, the data does have pretty low values
What do you mean by "weird", from a visual standpoint or rather as Benn says these absurdly small (or here high) p-values?