R/runApp.R

Defines functions runApp

#' @export
runApp <- function() {
  appDir <- system.file("shiny-apps", "taskscoring", package = "englelab")
  if (appDir == "") {
    stop("Could not find example directory. Try re-installing `englelab`.", call. = FALSE)
  }

  shiny::runApp(appDir, display.mode = "normal")
}
EngleLab/englelab documentation built on Sept. 9, 2024, 4:12 a.m.