Skip to content

Commit

Permalink
fixup: clades rule
Browse files Browse the repository at this point in the history
  • Loading branch information
j23414 committed May 13, 2024
1 parent 420baef commit b49a807
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions phylogenetic/rules/annotate_phylogeny.smk
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ rule traits:
rule clades:
"""Annotating serotypes / genotypes"""
input:
tree = "results/genome/tree_{serotype}.nwk",
nt_muts = "results/genome/nt-muts_{serotype}.json",
aa_muts = "results/genome/aa-muts_{serotype}.json",
tree = "results/{gene}/tree_{serotype}.nwk",
nt_muts = "results/{gene}/nt-muts_{serotype}.json",
aa_muts = "results/{gene}/aa-muts_{serotype}.json",
clade_defs = lambda wildcards: config['clades']['clade_definitions'][wildcards.serotype][wildcards.gene],
output:
clades = "results/genome/clades_{serotype}.json"
clades = "results/{gene}/clades_{serotype}.json"
shell:
"""
augur clades \
Expand Down

0 comments on commit b49a807

Please sign in to comment.