Skip to contents

iSEEhub app

Usage

iSEEhub(ehub, runtime_install = FALSE)

Arguments

ehub

An ExperimentHub() object.

runtime_install

A logical scalar indicating whether the app may allow users whether to install data set dependencies at runtime using BiocManager::install() through a modal prompt.

Value

An iSEE() app with a custom landing page interfacing with ehub.

Examples

library(ExperimentHub)
ehub <- ExperimentHub()

app <- iSEEhub(ehub)

if (interactive()) {
  shiny::runApp(app, port = 1234)
}