forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
imb.config
30 lines (25 loc) · 802 Bytes
/
imb.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
params {
config_profile_description = 'Institute of Molecular Biology (IMB) HPC cluster profile provided by nf-core/configs'
config_profile_contact = 'Patrick Hüther (@phue)'
config_profile_url = 'https://imb-mainz.de/'
config_profile_name = 'IMB HPC cluster'
max_cpus = 32
max_memory = 1.TB
max_time = 7.d
}
singularity {
enabled = true
autoMounts = true
}
executor {
name = 'slurm'
jobName = { "${task.process.split(':').last()}" }
queueSize = 20
}
process {
scratch = '/jobdir/$SLURM_JOB_ID'
cache = 'lenient'
queue = "groups".execute().text.contains('imb-bioinfocf')
? { task.time <= 5.h ? 'bcfshort' : 'bcflong' }
: { task.time <= 5.h ? 'short' : 'long' }
}