R/runGUI.R

Defines functions runGUI

Documented in runGUI

#' A function to launch Repliscope in interactive mode (Shiny app).
#' @keywords shiny genomics bioinformatics replication
#' @import ggplot2 shiny
#' @importFrom colourpicker colourInput colourPicker
#' @export

runGUI <- function() {
  appDir <- system.file("shinyApp", package = "Repliscope")
  if (appDir == "") {
    stop("Could not find example directory. Try re-installing Repliscope.", call. = FALSE)
  }

  shiny::runApp(appDir, display.mode = "normal")
}

Try the Repliscope package in your browser

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

Repliscope documentation built on Sept. 13, 2022, 9:05 a.m.