R/shinyVisApp.R

Defines functions shinyVisApp

Documented in shinyVisApp

#' Shiny app.
#'
#' A shiny app for interactive ddPCR droplet classification.
#'
#' @return A Shiny application
#'
#' @import shiny
#'
#' @author Anthony Chiu, \email{anthony.chiu@cruk.manchester.ac.uk}
#'
#' @export

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

Try the twoddpcr package in your browser

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

twoddpcr documentation built on Nov. 8, 2020, 5:49 p.m.