From 0ed008bf29a3bd6ba97d4e41f848d21975417f12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gr=C3=BCning?= Date: Mon, 3 Jun 2024 11:08:57 +0200 Subject: [PATCH] reduce alphafold jobs --- files/galaxy/tpv/tools.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/galaxy/tpv/tools.yml b/files/galaxy/tpv/tools.yml index a099b5a4d..3cf0c689c 100644 --- a/files/galaxy/tpv/tools.yml +++ b/files/galaxy/tpv/tools.yml @@ -284,7 +284,7 @@ tools: - if: helpers.tool_version_gte(tool, '2.3.1+galaxy2') execute: | from random import SystemRandom - if SystemRandom().random() < 0.10 and not job.get_param_values(app).get("model_preset") == "multimer": # Multimer needs more memory than we can currently provide on GPU nodes + if SystemRandom().random() < 0.01 and not job.get_param_values(app).get("model_preset") == "multimer": # Multimer needs more memory than we can currently provide on GPU nodes entity.gpus = 1 entity.cores = 8 # We are currently utilizing a whole GPU VM (cores 8 mem 40 gpus 1)