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

Description Usage Arguments Details Value Examples

View source: R/modeEmpty.R

Description

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

Usage

1

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

1
2
3
4
5
6
7
8
example("SingleCellExperiment")
rownames(sce) <- paste0("G", 1:200)
colnames(sce) <- paste0("C", 1:100)

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

iSEEu documentation built on Nov. 8, 2020, 8:12 p.m.