R/mapply_custom.R

Defines functions .mapply_custom

Documented in .mapply_custom

#' @title Custom mapply Function for Parallel Processing
#'
#' @description
#' A wrapper function that conditionally applies either the classical `mapply` function 
#' or `parallel::clusterMap` based on whether a cluster object is provided. 
#' If the number of clusters is not null, it applies `clusterMap` for parallel execution; 
#' otherwise, it defaults to the classical `mapply`.
#'
#' @param cl A cluster object created by `makeCluster`. If `NULL`, the classical `mapply` function is used.
#' @param FUN A function to apply to the arguments.
#' @param ... Arguments to be passed to `FUN`. These should be vectors of equal length.
#' @param MoreArgs A list of additional arguments to be passed to `FUN`.
#' @param SIMPLIFY A logical value indicating whether to simplify the result if possible. Default is `TRUE`.
#' @param USE.NAMES A logical value indicating whether to use names from the first argument. Default is `TRUE`.
#'
#' @return A vector or list containing the results of applying the function `FUN` to the provided arguments. 
#'         The output type depends on the value of `SIMPLIFY`.
#'
#' @details
#' This function is useful for switching between parallel and non-parallel execution 
#' based on the availability of a cluster, allowing for more flexible and efficient code.
#'
#' @author Marzia Angela Cremona & Francesca Chiaromonte
#'
#' @export
.mapply_custom <- function(cl,FUN,...,MoreArgs=NULL,SIMPLIFY=TRUE,USE.NAMES=TRUE){
  if(is.null(cl)){
    mapply(FUN,...,MoreArgs=MoreArgs,SIMPLIFY=SIMPLIFY,USE.NAMES=USE.NAMES)
  }else{
    parallel::clusterMap(cl,FUN,...,MoreArgs=MoreArgs,SIMPLIFY=SIMPLIFY,USE.NAMES=USE.NAMES)
  }
}

Try the funMoDisco package in your browser

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

funMoDisco documentation built on April 16, 2025, 1:10 a.m.