Skip to content

Commit

Permalink
Don't use sequences in metadata-based subsampling
Browse files Browse the repository at this point in the history
Removing unnecessary sequence I/O should improve workflow run times.
  • Loading branch information
victorlin committed Sep 21, 2023
1 parent 91482e8 commit 834dc22
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions workflow/snakemake_rules/core.smk
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ rule filter:

rule subsample:
input:
sequences=rules.filter.output.sequences,
metadata=rules.filter.output.metadata,
output:
strains=build_dir + "/{build_name}/{sample}_strains.txt",
Expand All @@ -65,7 +64,6 @@ rule subsample:
shell:
"""
augur filter \
--sequences {input.sequences} \
--metadata {input.metadata} \
--metadata-id-columns {params.strain_id} \
--output-strains {output.strains} \
Expand Down

0 comments on commit 834dc22

Please sign in to comment.