R/shiny_biolockj.R

Defines functions shiny_biolockj

Documented in shiny_biolockj

#' shiny biolockj
#' 
#' This is the essential launch command for the shiny app.
#'
#' @param ... parameters passed to shinyApp(ui, server, ...)
#' 
#' @import shiny
#'
#' @return no return value
#' 
#' @export
#' 
shiny_biolockj <- function(...) {
    # Run the application ####
    # Supress Shiny's auto-load behaviour
    old <- options(shiny.autoload.r = FALSE)
    on.exit(options(old), add = TRUE)  
    
    shinyApp(biolockj_ui(), biolockj_server(input, output, session), ...)
}
IvoryC/shinyBioLockJ documentation built on May 29, 2021, 7:40 a.m.