From 123c44c56daf8fa6f06ed46a2f6ca454ddc653ca Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Mon, 9 Mar 2020 16:18:41 -0500 Subject: [PATCH] feat: add initial ganymede config --- conf/utd_ganymede.config | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 conf/utd_ganymede.config diff --git a/conf/utd_ganymede.config b/conf/utd_ganymede.config new file mode 100644 index 0000000..a183861 --- /dev/null +++ b/conf/utd_ganymede.config @@ -0,0 +1,24 @@ +//Profile config names for nf-core/configs +params { + config_profile_description = 'University of Texas at Dallas HPC cluster profile provided by nf-core/configs' + config_profile_contact = 'Edmund Miller(@emiller88)' + config_profile_url = 'http://docs.oithpc.utdallas.edu/' +} + +singularity { + enabled = true + envWhitelist='SINGULARITY_BINDPATH' + autoMounts = true +} + +process { + beforeScript = 'module load Singularity/2.4.5' + executor = 'slurm' + queue = 'genomics' +} + +params { + max_memory = 32.GB + max_cpus = 16 + max_time = 48.h +}