R/launch.R

Defines functions launchSeuratExplorer

Documented in launchSeuratExplorer

# launch.R
## used to launch the shiny app in a web browser.


#' Launch shiny app
#'
#' @param verbose for debug use
#'
#' @import shiny
#' @import shinydashboard
#' @return In-browser Shiny Application launch
#' @examples
#' if(interactive()){launchSeuratExplorer()}
#' @export
launchSeuratExplorer <- function(verbose=FALSE){
  options(SeuratExplorerVerbose = verbose)
  app = shinyApp(ui, server)
  runApp(app, launch.browser = TRUE)
}

Try the SeuratExplorer package in your browser

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

SeuratExplorer documentation built on April 4, 2025, 1:57 a.m.