-
Notifications
You must be signed in to change notification settings - Fork 273
/
xanadu.config
42 lines (36 loc) · 1.04 KB
/
xanadu.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
40
41
42
params {
config_profile_description = 'The UConn HPC profile'
config_profile_contact = '[email protected]'
config_profile_url = 'https://bioinformatics.uconn.edu/'
// max resources
max_memory = 2.TB
max_cpus = 64
max_time = 21.d
// Path to shared singularity images
singularity_cache_dir = '/isg/shared/databases/nfx_singularity_cache'
}
process {
resourceLimits = [
memory: 2.TB,
cpus: 64,
time: 21.d
]
executor = 'slurm'
queue = { task.memory <= 245.GB ? 'general' : (task.memory <= 512.GB ? 'himem' : 'himem2') }
clusterOptions = {
[
task.memory <= 245.GB ? '--qos=general' : '--qos=himem'
].join(' ').trim()
}
}
executor {
name = 'slurm'
submitRateLimit = '2 sec'
queueSize = 100
}
singularity {
enabled = true
cacheDir = params.singularity_cache_dir
autoMounts = true
conda.enabled = false
}