Skip to contents

Returns a Shiny app object for ontology annotation. This function does not launch the app. Please call shiny::runApp() yourself (see examples).

Usage

build_ont_annot_app(use_demo = TRUE, ...)

Arguments

use_demo

Logical, if TRUE, load packaged lightweight demo ontologies.

...

Optional named overrides passed as data.frames with columns id, name, ancestors, parents, children: hpo, ecto, chebi.

Value

A shiny.appobj.

Examples

if (interactive()) {
  app <- build_ont_annot_app()
  shiny::runApp(app)
}