R/shiny_seuratter.R

Defines functions run_shiny_seuratter

Documented in run_shiny_seuratter

#' Run the shiny app for seuratter
#'
#' Run the shiny app for seuratter, displaying all the plots outputted by the package with the example
#' data PBMC.
#'
#' @return No return value. Opens a shiny app page.
#' @examples
#' \dontrun{
#' run_shiny_seuratter()
#' }
#'
#' @importFrom shiny runApp
#' @export
run_shiny_seuratter <- function() {
  app_directory <- system.file("../inst/shiny-scripts",
                               package = "seuratter")
  shiny::runApp(app_directory, display.mode = "normal")
  return()
}
sotaro0214/seuratter documentation built on Dec. 8, 2019, 4:24 p.m.