Conversation
joverlee521
approved these changes
Oct 6, 2025
Contributor
joverlee521
left a comment
There was a problem hiding this comment.
General config improvements make sense to me 👍
Comment on lines
+9
to
+10
| build_name=r"genome|G|F", | ||
| resolution=r"all-time|6y|3y", |
Contributor
There was a problem hiding this comment.
I was going to suggest these should be dynamic
Suggested change
| build_name=r"genome|G|F", | |
| resolution=r"all-time|6y|3y", | |
| build_name="|".join(config["builds_to_run"]), | |
| resolution="|".join(config["resolutions_to_run"]), |
However I then realized that these already hardcoded due to the values in the config/distance_maps.tsv. Probably good to add a note here and add to config validation in the future.
3340439 to
7dd63f2
Compare
subrepo: subdir: "shared/vendored" merged: "37cf39c" upstream: origin: "https://github.com/nextstrain/shared" branch: "main" commit: "37cf39c" git-subrepo: version: "0.4.9" origin: "https://github.com/ingydotnet/git-subrepo" commit: "4f60dd7"
Useful for debugging.
augur filter has never taken a reference file as input, so my guess is this was originally copied by mistake.
Preparing to make changes to the config that would have broken this. It seems fine to hardcode along with the already hardcoded sample size.
This will make it easier to compare changes in the switch to augur subsample which will define all parameters in config.
This shouldn't rely on config from another rule.
e243d2f to
0b22185
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description of proposed changes
Small adjustments to config, particularly around filtering and subsampling.
Related issue(s)
Preparing for #103
Checklist
Update changelog