modeEmpty: App pre-configured to launch with no visible panel

View source: R/modeEmpty.R

modeEmptyR Documentation

App pre-configured to launch with no visible panel

Description

This mode launches an app that does not display any panel.

Usage

modeEmpty(...)

Arguments

...

Arguments passed to iSEE().

Details

This mode presents the advantage to launch an interface in a minimal amount of time, as it does not need to render any panel when the interface is launched. Users can then use the "Organize panels" widget to select panels to display in the interface.

Value

A Shiny app object is returned.

Examples

example("SingleCellExperiment")
rownames(sce) <- paste0("G", 1:200)
colnames(sce) <- paste0("C", 1:100)

app <- modeEmpty(sce)
if (interactive()) {
  shiny::runApp(app, port=1234)
}


iSEE/iSEEu documentation built on March 28, 2024, 2:29 a.m.