Last active
September 25, 2015 07:35
-
-
Save mbk0asis/fbaf7839cd9b5e74ed9e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with(SCNT_TSA, plot(log2FoldChange,-log10(pval),pch=20,main="Volcano plot", | |
col=rgb(0.6,0.6,0.6, alpha = 0.1))) | |
with(subset(SCNT_TSA, pval<.05 & abs(log2FoldChange)>1), | |
points(log2FoldChange,-log10(pval),pch=20,col=rgb(1,0.5,0, alpha = 0.4))) | |
abline(v=c(-1,1),col="blue",lwd=1,lty=5) | |
abline(v=c(0,0),col="grey40",lwd=1,lty=2) | |
abline(c(-log10(0.05),0),col="blue",lwd=1,lty=5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment