Skip to content
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

Remove redundant include strains #843

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion defaults/include.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
Wuhan/Hu-1/2019
Wuhan-Hu-1/2019
Wuhan/WH01/2019
4 changes: 4 additions & 0 deletions defaults/parameters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,12 @@ filter:
# will help reduce the number of genetically identical strains that get chosen,
# and allows for more diversity represented on the tree.
priorities:
ignore_sequences:
- Wuhan/Hu-1/2019
- Wuhan-Hu-1/2019
crowding_penalty: 0.1


# Alignment settings
# Alignments are partitioned into smaller groups to speed up the overall alignment process.
# The number of sequences per group determines the run time of a single alignment job.
Expand Down
2 changes: 1 addition & 1 deletion workflow/snakemake_rules/main_workflow.smk
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ rule proximity_score:
"benchmarks/proximity_score_{build_name}_{focus}.txt"
params:
chunk_size=10000,
ignore_seqs = config['refine']['root']
ignore_seqs = config['priorities']['ignore_sequences'],
resources:
# Memory scales at ~0.15 MB * chunk_size (e.g., 0.15 MB * 10000 = 1.5GB).
mem_mb=4000
Expand Down