I'm bootstrapping a glmmTMB using glmmboot
package (version 0.5.1) in R. This useful package is implemented with the future
package in order to parallelize processes.
When I run the command it gives me this warning:
UNRELIABLE VALUE: Future (‘future_lapply-1’) unexpectedly generated random numbers without specifying argument 'future.seed'. There is a risk that those random numbers are not statistically sound and the overall results might be invalid. To fix this, specify 'future.seed=TRUE'. This ensures that proper, parallel-safe random numbers are produced via the L'Ecuyer-CMRG method. To disable this check, use 'future.seed=NULL', or set option 'future.rng.onMisuse' to "ignore"
I know that other users has reported this issue: https://github.com/satijalab/seurat/issues/3622 and the answer were that it weren't a problem because in that case as it wasn't using random numbers. Moreover, this warning should have been fixed in previous versions of the package (I'm using version 1.21.0).
My concern is about if in my case this is a problem or if I could ignore the warnings.