This is a test version of Biostars. For the public version, visit https://www.biostars.org.
volcano plot not showing genera name clearly

Hi,

I am trying to plot volcano plot with EnhancedVolcano but some of the genera names are not completely wrapped in the figure.

code;
res<- read.table("volcano.plot.txt", row.names=1,sep="\t", header=T, blank.lines.skip=F, check.names=F)
 pdf("genera.pdf", width=10, height=8)
EnhancedVolcano(res, lab = rownames(res),x = 'log2FoldChange',y = 'pvalue')
dev.off();

enter image description here

Many thanks

r visulization rnaseq

thanks it is sorted by using xlim = c(-5, 8)). but this always generates the graph with p-value, how I can change it to FDR (padj) value.

Many thanks,

Use the FDR column instead of the nominal p-value column.

0 answers

No answers yet.

Log in to answer this question.