R/UHRIonStarShiny.R

Defines functions UHRIonStarShiny

Documented in UHRIonStarShiny

#' UHR-IonStar Web Application
#'
#' These functions initiate the R shiny app 'UHR-IonStar'.
#'
#' @export
#'


UHRIonStarShiny <- function(){
  options(shiny.maxRequestSize=100000*1024^2)
  appDir <- system.file("shiny", "UHRIonStar",package = "UHR.IonStar")
  if (appDir == "") {
    stop("Could not find UI directory. Try re-installing `UHR.IonStar`.", call. = FALSE)
  }
  shiny::runApp(appDir, display.mode = "normal")
}
JunQu-Lab/UHRIonStarApp documentation built on July 2, 2022, 12:47 a.m.