summaryrefslogtreecommitdiff
path: root/R/app.R
blob: 64b5d2a3925eb163e9ee7ef0cab8eea83ec9d85d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#' 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.")

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