Nothing
##' MSnbase defined a few options globally using the standard R
##' options mechanism. The current values of these options can be
##' queried with `MSnbaseOptions`. The options are:
##' + `verbose`: defines a session-wide verbosity flag, that
##' is used if the `verbose` argument in individual functions is
##' not set.
##' + `PARALLEL_THRESH`: defines the minimum number of spectra per file
##' necessary before using parallel processing.
##' + `fastLoad`: `logical(1)`. If `TRUE` performs faster data loading for all
##' methods of [OnDiskMSnExp] that load data from the original files (such as
##' [spectrapply()]). Users experiencing data I/O errors (observed mostly
##' on macOS systems) should set this option to `FALSE`.
##'
##' `isMSnbaseVerbose` is one wrapper for the verbosity flag,
##' also available through `options("MSnbase")$verbose`.
##'
##' There are also setters to set options individually. When run
##' without argument, the verbosity setter inverts the current value
##' of the option.
##'
##' @title MSnbase options
##'
##' @param opt The value of the new option
##'
##' @return A `list` of MSnbase options and the single option
##' values for the individual accessors.
##' @md
MSnbaseOptions <- function()
options("MSnbase")[[1]]
##' @rdname MSnbaseOptions
isMSnbaseVerbose <- function()
MSnbaseOptions()$verbose
##' @rdname MSnbaseOptions
setMSnbaseVerbose <- function(opt) {
if (missing(opt))
opt <- !isMSnbaseVerbose()
oldopts <- opts <- MSnbaseOptions()
opts$verbose <- opt
options("MSnbase" = opts)
invisible(oldopts$verbose)
}
##' @rdname MSnbaseOptions
setMSnbaseParallelThresh <- function(opt = 1000) {
oldopts <- opts <- MSnbaseOptions()
opts$PARALLEL_THRESH <- opt
options("MSnbase" = opts)
invisible(oldopts$PARALLEL_THRESH)
}
##' @rdname MSnbaseOptions
setMSnbaseFastLoad <- function(opt = TRUE) {
oldopts <- opts <- MSnbaseOptions()
opts$fastLoad <- opt
options("MSnbase" = opts)
invisible(oldopts$fastLoad)
}
##' @rdname MSnbaseOptions
isMSnbaseFastLoad <- function() {
fast_load <- MSnbaseOptions()$fastLoad
## For some odd reasons we get also NULL back - parallel processing?
if (!length(fast_load))
fast_load <- FALSE
fast_load
}
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.