R/start_shiny_app.R

Defines functions start_shiny_app

Documented in start_shiny_app

#' Interactive pathway curation
#'
#' Start the interactive shiny app fo pathway cluster curation.
#'
#' @examples
#' \dontrun{start_shiny_app()}
#'
#' @include zzz.R
#'
#' @export
start_shiny_app <- function() {
    shiny::runApp(
        glue("{find.package('pwcuratr')}/shiny"),
        launch.browser = TRUE
    )
}
kkmann/pwcuratr documentation built on March 7, 2020, 2 a.m.