Nothing
##' Start LC/MS QA application
##'
##' Runs a 'shiny' application to check the quality of LC/MS experiment. The
##' system's default web browser will be launched automatically after the app is
##' started.
##'
##' @return This function normally does not return; interrupt R to stop the
##' application (usually by pressing Ctrl + C or ESC)
##' @examples
##'
##' ## Please check the package vignette for details on how to use the app
##' if (interactive()) {
##' runQA()
##' }
##'
##' @export
runQA <- function() {
.verify_package("xcms")
.verify_package("MSnbase")
## Enable js
useShinyjs() ## need to initiate
shinyApp(ui = ui, server = server, options = list(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.