Skip to content

Commit

Permalink
DEV: update curl commands to fix #43
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Mar 15, 2024
1 parent f83086d commit 8ae0330
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions phables/workflow/install.smk
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ rule phrogs_mmseqs_download:
os.path.join("envs", "curl.yaml")
shell:
"""
curl -Lo {params.file} {params.url}
curl -Lko {params.file} {params.url}
tar -xf {params.file} -C {params.db_path}
rm -rf {params.file}
"""
Expand All @@ -54,7 +54,7 @@ rule smg_hmm_download:
os.path.join("envs", "curl.yaml")
shell:
"""
curl -Lo {output} {params.url}
curl -Lko {output} {params.url}
"""

rule phrog_annot_download:
Expand All @@ -66,5 +66,5 @@ rule phrog_annot_download:
os.path.join("envs", "curl.yaml")
shell:
"""
curl -Lo {output} {params.url}
curl -Lko {output} {params.url}
"""

0 comments on commit 8ae0330

Please sign in to comment.