R/runQA.R

Defines functions runQA

Documented in runQA

##' 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))
}

Try the LCMSQA package in your browser

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

LCMSQA documentation built on May 29, 2024, 3:09 a.m.