R/shinyAssemble.R

Defines functions shinyAssemble

shinyAssemble <- function() {
  appDir <- system.file("shinyAssemble", package = "shinyAssemble")
  if (appDir == "") {
    stop(
      "Could not find Directory, Try re-install",
      call. = FALSE
    )
  }

  shiny::runApp(
    appDir,
    launch.browser = TRUE,
    display.mode = "normal"
  )
}
jhk0530/shinyAssemble documentation built on April 20, 2020, 2:50 a.m.