Nothing
# launch.R
## used to launch the shiny app in a web browser.
#' Launch shiny app
#'
#' @param verbose for debug use
#'
#' @import shiny
#' @import shinydashboard
#' @return In-browser Shiny Application launch
#' @examples
#' if(interactive()){launchSeuratExplorer()}
#' @export
launchSeuratExplorer <- function(verbose=FALSE){
options(SeuratExplorerVerbose = verbose)
app = shinyApp(ui, server)
runApp(app, launch.browser = TRUE)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.