]> nmode's Git Repositories - Rnaught/blob - R/app.R
Adjust indent level and enforce 80-character line limit
[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 }