Description Usage Arguments Examples
Convenience function to create volcano plots from differents types of objects we generate in this package. This is mostly used by the multiGSEA.shiny package.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | volcanoPlot(
x,
stats = "dge",
xaxis = "logFC",
yaxis = "pval",
idx,
xtfrm = base::identity,
ytfrm = function(vals) -log10(vals),
xlab = xaxis,
ylab = sprintf("-log10(%s)", yaxis),
highlight = NULL,
horiz_lines = c(padj = 0.1),
xhex = NULL,
yhex = NULL,
width = NULL,
height = NULL,
shiny_source = "mgvolcano",
ggtheme = theme_bw(),
...
)
|
highlight |
A vector of featureIds to highlight, or a GeneSetDb that we can extract the featureIds from for this purpose. |
xhex |
The raw |
yhex |
the |
1 2 3 | mg <- exampleMultiGSEAResult()
volcanoPlot(mg)
volcanoPlot(mg, xhex=1, yhex=0.05)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.