Skip to content

Commit

Permalink
HIGHMEM
Browse files Browse the repository at this point in the history
  • Loading branch information
MattWellie committed Nov 8, 2023
1 parent b4219d7 commit 5fd89e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions reanalysis/vep_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
command,
query_command,
)
from cpg_workflows.resources import STANDARD
from cpg_workflows.resources import HIGHMEM, STANDARD
from cpg_workflows.utils import exists


Expand Down Expand Up @@ -271,8 +271,8 @@ def vep_one(
j.image(image_path('vep_110'))

# vep is single threaded, with a middling memory requirement
# tests have exceeded 8GB, so bump to ~16 (2 * highmem)
j.memory('highmem').storage('10Gi').cpu(2)
# tests have exceeded 8GB, so bump to ~13 (2 * highmem)
HIGHMEM.set_resources(j, ncpu=2, storage_gb=10)

if not isinstance(vcf, hb.ResourceFile):
vcf = b.read_input(str(vcf))
Expand Down

0 comments on commit 5fd89e8

Please sign in to comment.