# runRptApp.R
#' \code{runRptApp} run the shiny app \code{./inst/shiny-scripts/rptApp/}.
#' @return NULL (invisible) Invoked for its side-effect of launching a shiny app.
#' @examples
#' # No runnable example applies - but BiocCheck() requires one. So ...
#' NULL
#'\dontrun{
#' runRptApp()
#'}
#' @export
runRptApp <- function() {
appDir <- system.file("shiny-scripts", "rptApp", package = "rptPlus")
shiny::runApp(appDir, display.mode = "normal")
return(invisible(NULL))
}
# [END]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.