summaryrefslogtreecommitdiff
path: root/R/app.R
blob: 8048fa4f1b2c987223ac2a272799f1fd097a2cf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#' Launch the Rnaught Web Application
#'
#' @export
app <- function() {
    if (!requireNamespace("shiny", quietly=TRUE))
        stop("The package 'shiny' must be installed to launch the Rnaught web application.")
    if (!requireNamespace("shinyBS", quietly=TRUE))
        stop("The package 'shinyBS' must be installed to launch the Rnaught web application.")
    if (!requireNamespace("shinyjs", quietly=TRUE))
        stop("The package 'shinyjs' must be installed to launch the Rnaught web application.")

    shiny::shinyApp(ui(), server)
}