Description Usage Arguments Examples
plot volcano for easy comparision
1 2 3 4 5 6 7 8 9 | multiVolcano(
DE,
FoldChange = 0,
cutoff = 0.05,
DE.Only = TRUE,
type.sig = "p",
show.genes = FALSE,
genes = NULL
)
|
DE |
list of Differentially Expressed Genes from Various methods. |
FoldChange |
is cuoff to mark genes as Differentially expressed |
cutoff |
is either pvalue of FDR cutoff for filtering |
DE.Only |
Logical, show unchanged genes or not default TRUE |
type.sig |
vector |
show.genes |
logical weather to show genes as label |
genes |
vector tor of genes for which only volcano plot will be drawn |
1 2 3 4 5 6 | data("DEG")
DE.list<-list("edger" =dge_edger, "edgerql" = dge_edgerql,
"deseq2" = dge_deseq2, "voom" = dge_voom )
genes.list<-c("Gene7673", "Gene28034", "Gene38639")
multiVolcano(DE.list, FoldChange = 1.4, DE.Only = FALSE )
multiVolcano(DE.list, FoldChange = 1.4, DE.Only = FALSE , genes = genes.list)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.