R/runApp.R

Defines functions runshinyWGD

Documented in runshinyWGD

#' The main code to run shinyWGD
#'
#'
#' @export
runshinyWGD <- function() {
    appDir <- system.file("shinyWGD", package="shinyWGD")
    if (appDir == "") {
        stop("Could not find shinyWGD Try re-installing `shinyWGD`.", call.=FALSE)
    }

    shiny::runApp(appDir)
}

Try the shinyWGD package in your browser

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

shinyWGD documentation built on April 4, 2025, 2:28 a.m.