Skip to contents

Create a standalone Shiny app for the volcanoPlot module

Usage

volcanoPlotApp(df)

Arguments

df

A data frame to plot. Must contain effect size (e.g., log2FoldChange) and significance (e.g., padj) columns.

Value

A Shiny app object.

Author

Jared Andrews

Examples

library(VizModules)
data(airway_deseq2)
if (interactive()) {
    volcanoPlotApp(airway_deseq2)
}