Skip to content

Commit

Permalink
fix module loading
Browse files Browse the repository at this point in the history
  • Loading branch information
ASLeonard committed Dec 5, 2023
1 parent 8e12bfb commit 3440671
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions snakepit/short_reads.smk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rule all:
input:
'SR_SV/cohort.delly.forced.vcf.gz',
'SR_SV/SVs.vcf.gz',
expand('SR_SV/{sample}_{caller}',caller=('insurveyor',),sample=config['HiFi'])

rule picard_add_MQ:
Expand Down Expand Up @@ -41,7 +41,9 @@ rule delly_call_denovo:
output:
'SR_SV/{sample}.delly.denovo.bcf'
envmodules:
'boost'
'gcc/9.3.0',
'boost/1.74.0',
'gsl/2.6'
threads: 4
resources:
mem_mb = 4000
Expand All @@ -57,7 +59,9 @@ rule delly_merge:
output:
'SR_SV/cohort.delly.denovo.bcf'
envmodules:
'boost'
'gcc/9.3.0',
'boost/1.74.0',
'gsl/2.6'
threads: 4
resources:
mem_mb = 2500
Expand All @@ -73,7 +77,9 @@ rule delly_call_forced:
output:
'SR_SV/{sample}.delly.forced.vcf.gz'
envmodules:
'boost'
'gcc/9.3.0',
'boost/1.74.0',
'gsl/2.6'
threads: 4
resources:
mem_mb = 4000
Expand Down Expand Up @@ -103,7 +109,7 @@ rule delly_filter:
envmodules:
'gcc/9.3.0',
'boost/1.74.0',
'gsl/2.7.1'
'gsl/2.6'
threads: 1
resources:
mem_mb = 2500
Expand Down

0 comments on commit 3440671

Please sign in to comment.