Skip to content

Commit

Permalink
fix pipe of stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
alethomas committed Feb 22, 2024
1 parent c6fc415 commit 29f17c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/rules/ref.smk
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ rule get_genome_db_for_kraken:
conda:
"../envs/unix.yaml"
shell:
"mkdir {output} && curl -SL https://genome-idx.s3.amazonaws.com/kraken/k2_standard_08gb_20220926.tar.gz | tar zxvf - -C {output} 2> {log}"
"(mkdir {output} && curl -SL https://genome-idx.s3.amazonaws.com/kraken/k2_standard_08gb_20220926.tar.gz | tar zxvf - -C {output}) 2> {log}"


rule get_taxonomie_db_for_krona:
Expand Down Expand Up @@ -221,7 +221,7 @@ rule update_lineages:

rule get_gisaid_provision:
output:
temp("resources/gisaid/provision.json"),
"resources/gisaid/provision.json",
log:
"logs/get_gisaid_provision.log",
conda:
Expand Down

0 comments on commit 29f17c9

Please sign in to comment.