Skip to content

Commit

Permalink
fix results_dir for download
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Sep 23, 2020
1 parent ad7606d commit 2c83fbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/rules/download.smk
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ rule download_fna:
"""
message: "Downloading and decompressing fasta file {wildcards.sample}."
input:
'{{results_dir}}/sqlite_import/{download_dir}.txt'
results_dir + "/sqlite_import/{download_dir}.txt"
output:
'{{results_dir}}/{download_dir}/{sample}.fna'
results_dir + "{download_dir}/{sample}.fna"
run:
for file in input:
with open(file) as temp_file:
Expand Down

0 comments on commit 2c83fbe

Please sign in to comment.