BiocParallel icon indicating copy to clipboard operation
BiocParallel copied to clipboard

Allow recovery from fatal worker error

Open mtmorgan opened this issue 9 years ago • 0 comments

library(BiocParallel)
fun <- function(i) {
    if (i == 2) tools::pskill(Sys.getpid())
    i
}
bplapply(1:3, fun)

causes the entire bplapply() to fail, but could instead return results 1 and 3.

mtmorgan avatar Jan 25 '16 17:01 mtmorgan