R/shinyVisApp.R

Defines functions shinyVisApp

Documented in shinyVisApp

#' Shiny Visualisation App
#'
#' Provides an interactive web app for the running the IncucyteDRC workflow
#'
#' @return Launches an interactive Shiny application
#' @export
#' @import shiny
shinyVisApp <- function() {

    shiny::shinyApp(
        ui = shinyVisUI(),
        server = function(input, output) {
            shinyVisServer(input, output)
        }
    )
}

Try the IncucyteDRC package in your browser

Any scripts or data that you put into this service are public.

IncucyteDRC documentation built on May 2, 2019, 8:32 a.m.