R/runHotgenesShiny.R

Defines functions runHotgenes

Documented in runHotgenes

#' Launches the shiny app for hotgenes
#'
#' A function that launches the shiny app for hotgenes.
#'
#' @return No return value, but starts a shiny server.
#'
#' @examples
#' \dontrun{
#'   runHotgenes()
#' }
#'
#' @export
#' @importFrom shiny runApp

runHotgenes <- function() {
  appDir <- system.file("shiny-scripts",
                        package = "hotgenes")
  shiny::runApp(appDir, display.mode = "normal")
  return()
}
hyf97ca/hotgenes documentation built on Dec. 8, 2019, 12:41 p.m.