#' @title launch genoppi
#' @description launches genoppi in a seperte shiny application
#' @param local boolean. Launch locally on your machine or try connect to server (to be implemented)
#' @import shiny
#' @import shinydashboard
#' @export
launch_genoppi <- function(local=T) {
appDir <- system.file("shiny-examples", "myapp", package = "genoppi")
if (appDir == "") {
stop("Could not find example directory. Try re-installing `genoppi`.", call. = FALSE)
}
shiny::runApp(appDir, display.mode = "normal")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.