R/runShinyApps.R

Defines functions runINSPEcTGUI runProcessingRateDelay

Documented in runINSPEcTGUI runProcessingRateDelay

#' Run shiny applications contained in the package INSPEcT
#' @description
#' Two shiny apps are encoded into the package inspect:
#' - runProcessingRateDelay: plots single genes as well as genome wide plots associated to the
#'   processing induced delay loading the data from an INSPEcT object.
#' - runINSPEcTGUI: is a way to visualize and interact with the RNAdynamics at the level of 
#'   a single gene, either loading the data from ad INSPEcT object or from scratch.
#' @docType methods
#' @name INSPEcT-shinyApps
NULL

#' @rdname INSPEcT-shinyApps
runProcessingRateDelay = function() {
	shinyApp(ui = ProcessingRateDelayshinyAppUI, server = ProcessingRateDelayshinyAppServer)
}

#' @rdname INSPEcT-shinyApps
runINSPEcTGUI <- function() {
	shinyApp(ui = INSPEcTGUIshinyAppUI, server = INSPEcTGUIshinyAppServer)
}

Try the INSPEcT package in your browser

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

INSPEcT documentation built on Nov. 8, 2020, 6:49 p.m.