-
Notifications
You must be signed in to change notification settings - Fork 272
/
jex.config
39 lines (36 loc) · 907 Bytes
/
jex.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
params {
config_profile_name = 'Jex'
config_profile_description = 'Nextflow config file for the MRC LMS Jex cluster'
config_profile_contact = 'George Young (@A-N-Other)'
config_profile_url = 'https://lms.mrc.ac.uk/research-facility/bioinformatics-facility/'
}
process {
resourceLimits = [
memory: 4000.GB,
cpus: 16,
time: 3.d
]
executor = 'slurm'
queue = {
if (task.time <= 6.h && task.cpus <= 8 && task.memory <= 64.GB) {
'nice'
}
else if (task.memory > 256.GB) {
'hmem'
}
else {
'cpu'
}
}
clusterOptions = '--qos qos_batch'
}
singularity {
enabled = true
autoMounts = true
cacheDir = '/opt/resources/apps/singularity/cache'
}
params {
max_memory = 4000.GB
max_cpus = 16
max_time = 3.d
}