]> nmode's Git Repositories - Rnaught/blob - R/app.R
feb052f3d69d9e66a079716305abc7b860b48d6a
[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
8 shiny::shinyApp(ui, server)
9 }