Skip to content

Commit 1267ed4

Browse files
committed
Adding allocation information for new deepsomatic rules
1 parent e46097e commit 1267ed4

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

config/cluster/slurm.json

+11-5
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,24 @@
8484
"time": "1-00:00:00",
8585
"gres": "lscratch:750"
8686
},
87-
"deepsomatic_call_variants": {
87+
"deepsomatic_call_variants_gpu": {
8888
"threads": "16",
8989
"mem": "60G",
9090
"partition": "gpu",
9191
"gres": "gpu:a100:1,lscratch:450",
92-
"time": "1-00:00:00"
92+
"time": "1-12:00:00"
93+
},
94+
"deepsomatic_call_variants_cpu": {
95+
"threads": "36",
96+
"mem": "120G",
97+
"gres": "lscratch:450",
98+
"time": "3-00:00:00"
9399
},
94100
"deepsomatic_postprocess_variants": {
95-
"threads": "4",
96-
"mem": "64G",
101+
"threads": "6",
102+
"mem": "72G",
97103
"time": "1-00:00:00",
98-
"gres": "lscratch:256"
104+
"gres": "lscratch:450"
99105
},
100106
"deepvariant": {
101107
"threads": "18",

workflow/rules/depreciated.smk

+2-1
Original file line numberDiff line numberDiff line change
@@ -148,5 +148,6 @@ rule deepsomatic:
148148
--sample_name_tumor={params.tumor} {params.normal_name_option} \\
149149
--output_vcf={output.vcf} \\
150150
--num_shards={threads} \\
151-
--intermediate_results_dir=${{tmp}}
151+
--intermediate_results_dir=${{tmp}} \\
152+
--vcf_stats_report=false
152153
"""

0 commit comments

Comments
 (0)