Skip to contents

This function is called directly, using the same id as its UI counterpart, and wraps its logic in moduleServer() (see example). Essentially this just passes the results of colData() applied to the specified SummarizedExperiment object to the simpletable module

Usage

volcanoplot(id, eselist)

Arguments

id

Module namespace

eselist

ExploratorySummarizedExperimentList object containing ExploratorySummarizedExperiment objects

Examples

data(airway, package = "airway")
ese <- as(airway, "ExploratorySummarizedExperiment")
eselist <- ExploratorySummarizedExperimentList(ese)
#> Creating ExploratorySummarizedExperimentList object

# However, almost certainly called via application creation:

if (interactive()) {
  differentialtable("differentialtable", eselist)
  app <- prepare_app("volcanoplot", eselist)
  shiny::shinyApp(ui = app$ui, server = app$server)
}