Skip to contents

A shiny Module.

Usage

mod_homepage_ui(id)

mod_homepage_server(
  id,
  mdfile = file.path(system.file("app/md", package = "MagellanNTK"), "Presentation.Rmd"),
  dataset = reactive({
     NULL
 })
)

mod_homepage()

Arguments

id

A `character()` as the id of the Shiny module

mdfile

The path to the Rmd file which describes the pipeline

dataset

An instance of the class `MultiAssayExperiment`

Value

A shiny App

Examples

if (interactive()) {
    shiny::runApp(mod_homepage())
}