R/mapply-functions.R

Defines functions .mapply

## .mapply
##  wrapper for mapply with different defaults
##
## params:
##  see ?mapply
##
## returns:
##  see ?mapply
##
.mapply <- function(FUN, ..., MoreArgs=NULL, SIMPLIFY=FALSE, USE.NAMES=FALSE,
                    mc.cores=1L) {
  parallel::mcmapply(FUN=FUN, ..., MoreArgs=MoreArgs, SIMPLIFY=SIMPLIFY,
                     USE.NAMES=USE.NAMES, mc.cores=mc.cores)
}

Try the MALDIquant package in your browser

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

MALDIquant documentation built on May 29, 2024, 6:11 a.m.