R/startModConApp.R

Defines functions startModConApp

Documented in startModConApp

# Run shiny app
startModConApp <- function() {
  appDir <- system.file("shinyApp","app.R", package = "ModCon")
  if (appDir == "") {
    stop("Could not find the shiny directory.", call. = FALSE)
  }
  
  shiny::runApp(appDir, display.mode = "normal")
}
caggtaagtat/ModCon documentation built on March 12, 2021, 4:12 a.m.