]> nmode's Git Repositories - Rnaught/blob - R/app.R
64b5d2a3925eb163e9ee7ef0cab8eea83ec9d85d
[Rnaught] / R / app.R
1 #' Launch the Rnaught Web Application
2 #'
3 #' @export
4 app <- function() {
5 if (!requireNamespace("shiny", quietly=TRUE))
6 stop("The package 'shiny' must be installed to launch the Rnaught web application.")
7 if (!requireNamespace("shinyBS", quietly=TRUE))
8 stop("The package 'shinyBS' must be installed to launch the Rnaught web application.")
9
10 shiny::shinyApp(ui(), server)
11 }