R/launch_fqc.R

Defines functions launch_fqc

Documented in launch_fqc

#' Launch FastqCleaner application
#' @param launch.browser Launch in browser? Default TRUE
#' @param ... Additional parameters passed to \code{\link[shiny]{runApp}}
#' @author Leandro Roser \email{learoser@@gmail.com}
#' @examples 
#' # Uncomment and paste in te console to launch the application:
#' # launch_fqc() 
#' 
#' NULL
#' @return Launch the application, without return value
#' @export


launch_fqc <- function(launch.browser = TRUE, ...) {
    fpath <- system.file("application", package = "FastqCleaner")
    shiny::runApp(fpath, launch.browser = launch.browser, ...)
}

Try the FastqCleaner package in your browser

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

FastqCleaner documentation built on Nov. 8, 2020, 5:05 p.m.