Skip to content

BiocParallel doesn't propagate warnings #216

@alanocallaghan

Description

@alanocallaghan

This is not ideal imo, means that warnings silently disappear. Would be fine (ish) if at least a message showed up saying we encountered some warnings

library(BiocParallel)
fun <- function(v) {
     warning("A warning")
     sqrt(v)
 }
 bplapply(1:10, fun)
#> [[1]]
#> [1] 1
#> 
#> [[2]]
#> [1] 1.414214
#> 
#> [[3]]
#> [1] 1.732051
#> 
#> [[4]]
#> [1] 2
#> 
#> [[5]]
#> [1] 2.236068
#> 
#> [[6]]
#> [1] 2.44949
#> 
#> [[7]]
#> [1] 2.645751
#> 
#> [[8]]
#> [1] 2.828427
#> 
#> [[9]]
#> [1] 3
#> 
#> [[10]]
#> [1] 3.162278

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions