You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
y<- bplapply(1:2, rnorm)
Error:UNRELIABLEVALUE: Future ('<none>') unexpectedlygeneratedrandomnumberswithoutspecifyingargument'seed'.Thereisariskthatthoserandomnumbersarenotstatisticallysoundandtheoverallresultsmightbeinvalid.Tofixthis, specify'seed=TRUE'.Thisensuresthatproper, parallel-saferandomnumbersareproducedviatheL'Ecuyer-CMRG method. To disable this check, use 'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
Similarly, with RngFutureWarning:s, we would expect:
library(BiocParallel.FutureParam)
register(FutureParam())
options(future.rng.onMisuse="warning") # defaulty<- bplapply(1:2, rnorm)
Warning:UNRELIABLEVALUE: Future ('<none>') unexpectedlygeneratedrandomnumberswithoutspecifyingargument'seed'.Thereisariskthatthoserandomnumbersarenotstatisticallysoundandtheoverallresultsmightbeinvalid.Tofixthis, specify'seed=TRUE'.Thisensuresthatproper, parallel-saferandomnumbersareproducedviatheL'Ecuyer-CMRG method. To disable this check, use 'seed=NULL', or set option 'future.rng.onMisuse' to "ignore".
but right now those warnings are muffled and never signaled.
The text was updated successfully, but these errors were encountered:
The expected behavior should be:
Similarly, with RngFutureWarning:s, we would expect:
but right now those warnings are muffled and never signaled.
The text was updated successfully, but these errors were encountered: