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
fix: Use 'snakemake.utils.update_config' instead of 'dict.update' #1126
Conversation
Kudos, SonarCloud Quality Gate passed!
|
@johanneskoester Any thoughts on this? :-) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense to me! Sorry for the late review.
Kudos, SonarCloud Quality Gate passed!
|
Soemthing fails on windows now. Do you have a clue? |
Not really, and I don't have any Windows machine to investigate this :-( |
Kudos, SonarCloud Quality Gate passed!
|
Thanks a lot, finally done :-). |
Wonderful! Thanks a lot for the debugging as well :-) |
Description
When merging configs, Snakemake uses
dict.update
instead ofsnakemake.utils.update_config
which is not recursive.Nested config options can thus disappear unexpectedly.
QC
docs/
) is updated to reflect the changes or this is not necessary (e.g. if the change does neither modify the language nor the behavior or functionalities of Snakemake).