brentp / combined-pvalues

combining p-values using modified stouffer-liptak for spatially correlated results (probes)
MIT License
44 stars 22 forks source link

issue with multiprocessing on MacOS with Python3.8 #33

Open ahryho opened 3 years ago

ahryho commented 3 years ago

I faced the problem running comb-p from Python3.8 on OSX. Python3.8 on OSX uses by default "spawn" start method for new processes that provides error. The workaround is to call set_start_methos with "fork" and "force" arguments: set_start_method("fork", force=True). It helped me to resolve the issue.