-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Global option for parallel processing #156
Comments
Great idea :) |
I thought parallel was installed automatically now with R ? |
@thierrygosselin it's not a matter of installing the package but passing parameters to various functions. |
@thierrygosselin, there have been a history of problems with parallel on windows, but the main issue this would fix is testing on clusters (as was brought up in #128). |
Ha ! ok great! |
I can't remember: has this been implemented - shall I close the issue? |
No, it has not.
…Sent from my iPhone
On Jan 9, 2017, at 04:16, Thibaut Jombart ***@***.***> wrote:
I can't remember: has this been implemented - shall I close the issue?
—
You are receiving this because you were assigned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Right now for anything dealing with genlight objects, parallel processing is dependent on whether or not the package parallel is installed:
It can be a pain to specify
parallel = FALSE
for all the functions when dealing with genlight. I propose to add a global optionadegenet.parallel
to be set when the package is loaded in a similar fashion to dplyr: https://github.com/hadley/dplyr/blob/master/R/zzz.rThis way, the checking could be done with the option, as opposed to loading the parallel package:
I'm just putting this here so I can open a pull request later 😄
The text was updated successfully, but these errors were encountered: