R/run-app.R

Defines functions run_app

Documented in run_app

#' Run the Shiny Application
#' @param ... additional options passed to shinyApp()
#' @export
#'
#' @return No return value, called for the shiny app interface
#'
#' @importFrom shiny shinyApp
run_app <- function(...) {
  shinyApp(ui, server, options = list(launch.browser = TRUE), ...)
}
AstraZeneca/INSPECTumours documentation built on March 30, 2023, 12:30 p.m.