Skip to content

Commit

Permalink
Adding allocation information for new deepsomatic rules
Browse files Browse the repository at this point in the history
  • Loading branch information
skchronicles committed Nov 12, 2024
1 parent e46097e commit 1267ed4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
16 changes: 11 additions & 5 deletions config/cluster/slurm.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,18 +84,24 @@
"time": "1-00:00:00",
"gres": "lscratch:750"
},
"deepsomatic_call_variants": {
"deepsomatic_call_variants_gpu": {
"threads": "16",
"mem": "60G",
"partition": "gpu",
"gres": "gpu:a100:1,lscratch:450",
"time": "1-00:00:00"
"time": "1-12:00:00"
},
"deepsomatic_call_variants_cpu": {
"threads": "36",
"mem": "120G",
"gres": "lscratch:450",
"time": "3-00:00:00"
},
"deepsomatic_postprocess_variants": {
"threads": "4",
"mem": "64G",
"threads": "6",
"mem": "72G",
"time": "1-00:00:00",
"gres": "lscratch:256"
"gres": "lscratch:450"
},
"deepvariant": {
"threads": "18",
Expand Down
3 changes: 2 additions & 1 deletion workflow/rules/depreciated.smk
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,6 @@ rule deepsomatic:
--sample_name_tumor={params.tumor} {params.normal_name_option} \\
--output_vcf={output.vcf} \\
--num_shards={threads} \\
--intermediate_results_dir=${{tmp}}
--intermediate_results_dir=${{tmp}} \\
--vcf_stats_report=false
"""

0 comments on commit 1267ed4

Please sign in to comment.