Skip to content

Commit

Permalink
fixup: forgot the example files connection
Browse files Browse the repository at this point in the history
  • Loading branch information
j23414 committed May 8, 2024
1 parent dd45b63 commit 30b1d5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions phylogenetic/rules/prepare_sequences.smk
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ rule decompress:
sequences = "data/sequences_{serotype}.fasta.zst",
metadata = "data/metadata_{serotype}.tsv.zst"
output:
sequences = "data/genome/sequences_{serotype}.fasta",
sequences = "data/sequences_{serotype}.fasta",
metadata = "data/metadata_{serotype}.tsv"
shell:
"""
Expand All @@ -52,7 +52,7 @@ rule filter:
- excluding strains with missing region, country or date metadata
"""
input:
sequences = "data/{gene}/sequences_{serotype}.fasta",
sequences = "data/sequences_{serotype}.fasta",
metadata = "data/metadata_{serotype}.tsv",
exclude = config["filter"]["exclude"],
output:
Expand Down
2 changes: 1 addition & 1 deletion phylogenetic/rules/prepare_sequences_E.smk
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ rule align_and_extract_E:
Cutting sequences to the length of the E gene reference sequence
"""
input:
sequences = "data/genome/sequences_{serotype}.fasta",
sequences = "data/sequences_{serotype}.fasta",
reference = "results/config/reference_{serotype}_E.fasta"
output:
sequences = "results/E/sequences_{serotype}.fasta"
Expand Down

0 comments on commit 30b1d5a

Please sign in to comment.