From e2157a230fc34695e726f098eb1d8126bd439d1b Mon Sep 17 00:00:00 2001 From: Matthias De Smet <11850640+matthdsm@users.noreply.github.com> Date: Tue, 30 May 2023 11:55:27 +0200 Subject: [PATCH] add nomad config --- conf/nomad.config | 25 +++++++++++++++++++++++++ nextflow.config | 1 + 2 files changed, 26 insertions(+) create mode 100644 conf/nomad.config diff --git a/conf/nomad.config b/conf/nomad.config new file mode 100644 index 00000000..d455fde1 --- /dev/null +++ b/conf/nomad.config @@ -0,0 +1,25 @@ + +conda.enabled = false +docker.enabled = false +singularity.enabled = false +podman.enabled = false +shifter.enabled = false +charliecloud.enabled = false + +params { + config_profile_description = 'CMGG Nomad job config' + config_profile_contact = '@matthdsm' + max_memory = 64.GB + max_cpus = 8 + max_time = 72.h +} + +executor { + name = 'local' + cpus = 36 + memory = 288.GB +} + +report { + overwrite = true +} diff --git a/nextflow.config b/nextflow.config index 86fc898e..1f85c2c8 100644 --- a/nextflow.config +++ b/nextflow.config @@ -163,6 +163,7 @@ profiles { executor.memory = 60.GB } cmgg { includeConfig "conf/cmgg.config" } + nomad { includeConfig "conf/nomad.config" } "coPGT-M" { includeConfig "conf/coPGT-M.config" } SeqCap { includeConfig "conf/SeqCap.config" } WES { includeConfig "conf/WES.config" }