Skip to content

Commit

Permalink
fix: higher verbosity in Snakemake rules (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Jun 21, 2023
1 parent b2708d7 commit a3fc327
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions clinvar_tsv/Snakefile
Expand Up @@ -41,6 +41,7 @@ rule parse_clinvar:
shell:
r"""
set -euo pipefail
set -x
clinvar_tsv parse_xml \
--clinvar-xml {input.release_xml} \
Expand All @@ -62,6 +63,7 @@ rule normalize_clinvar:
shell:
r"""
set -euo pipefail
set -x
clinvar_tsv normalize_tsv \
--input-tsv {input.tsv} \
Expand All @@ -83,6 +85,7 @@ rule sort_tabix_clinvar:
shell:
r"""
set -euo pipefail
set -x
cat \
<(zcat {input} | head -n 1) \
Expand All @@ -108,6 +111,7 @@ rule sort_svs:
shell:
r"""
set -euo pipefail
set -x
cat \
<(cat {input} | head -n 1) \
Expand All @@ -133,6 +137,7 @@ rule merge_clinvar:
shell:
r"""
set -euo pipefail
set -x
zcat {input} \
| clinvar_tsv merge_tsvs \
Expand Down

0 comments on commit a3fc327

Please sign in to comment.