Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
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.
I added a comment explaining the purpose of those lines.
At the moment, we are making changes to one scenario at a time. Not a good idea to delete them right now.
Instead, we should change the
# All Scenariosblock, because none of those will be a part of the final analysis.If we must delete comments, then remove the
All Scenariosblock.Uh oh!
There was an error while loading. Please reload this page.
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.
Surely snakemake has a more graceful way to do this? (that is, more graceful than commenting and uncommenting depending on the moment... )
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.
I think that is the way to do it, based on the way I've written the rules.
You can limit the rules that are executed with the
--untilflag, but the current rules will run every scenario listed in the DB, SCENARIO, and FOLDER variables.The only alternative I can think of is to write one rule for each scenario, but then the snakefile is repeating code. This was the approach I took in the snakefile for
cairo, but each scenario actually has a different command line argument and snakemake doesn't like it when the wildcards aren't the same.