knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
library(RNAseqStat)
RNAseqStat::enhance_volcano
can make a volcano from DEG data frame which contains log Fold Change and P value.
enhance_volcano(DEG_df,x = 'log2FoldChange', y = 'pvalue')
Show more top genes.
enhance_volcano(DEG_df,x = 'log2FoldChange', y = 'pvalue',top = 20)
highlight special gene
enhance_volcano(DEG_df,x = 'log2FoldChange', y = 'pvalue', highlight = c("KRT80","ALPP"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.