Skip to content

Commit

Permalink
Fix samtools ruls conda setup
Browse files Browse the repository at this point in the history
  • Loading branch information
lczech committed Dec 3, 2024
1 parent abea4d8 commit 727194e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions workflow/rules/pileup.smk
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ rule mpileup_merge_all:
threads: config["params"]["samtools"]["merge-threads"]
log:
"logs/samtools/mpileup/merge-all.log",
conda:
"../envs/samtools.yaml"
wrapper:
"v3.13.6/bio/samtools/merge"

Expand Down Expand Up @@ -67,6 +69,8 @@ rule mpileup_individual_sample:
extra=config["params"]["samtools"]["pileup"],
log:
"logs/samtools/mpileup/samples-{sample}.log",
conda:
"../envs/samtools.yaml"
wrapper:
"v3.13.6/bio/samtools/mpileup"

Expand All @@ -82,6 +86,8 @@ rule mpileup_all_samples:
extra=config["params"]["samtools"]["pileup"],
log:
"logs/samtools/mpileup/all-merged-units.log",
conda:
"../envs/samtools.yaml"
wrapper:
"v3.13.6/bio/samtools/mpileup"

Expand All @@ -96,6 +102,8 @@ rule mpileup_all_merged_samples:
extra=config["params"]["samtools"]["pileup"],
log:
"logs/samtools/mpileup/all-merged-samples.log",
conda:
"../envs/samtools.yaml"
wrapper:
"v3.13.6/bio/samtools/mpileup"

Expand Down

0 comments on commit 727194e

Please sign in to comment.