bpplapply | R Documentation |
Wrapper function for bplapply that automatically handles issues with BiocParallel related to different OS platforms.
bpplapply(
X,
FUN,
apply_fun = parallel::mclapply,
workers = check_workers(),
progressbar = workers > 1,
verbose = workers == 1,
use_snowparam = TRUE,
register_now = FALSE,
...
)
X |
Any object for which methods |
FUN |
The |
apply_fun |
Iterator function to use. |
workers |
Number of threads to parallelize across. |
progressbar |
|
verbose |
Print messages. |
use_snowparam |
Whether to use
SnowParam (default: |
register_now |
Register the cores now with
register ( |
... |
Arguments passed on to
|
(Named) list.
X <- stats::setNames(seq_len(length(letters)), letters)
out <- bpplapply(X, print)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.