R/run_RoME_app.r

Defines functions run_RoME_app

Documented in run_RoME_app

#' Run the RoME Shiny application
#' @description
#' Launches the embedded Shiny application included in the package.
#' @return No return value, called for side effects
#' @export
run_RoME_app <- function() {
  app_dir <- system.file("shiny/RoMEApp", package = "RoME")

  if (app_dir == "") {
    stop("Could not find the RoME Shiny app directory. Please reinstall the package.")
  }

  shiny::runApp(app_dir, display.mode = "normal")
}

Try the RoME package in your browser

Any scripts or data that you put into this service are public.

RoME documentation built on April 24, 2026, 1:07 a.m.