-
Notifications
You must be signed in to change notification settings - Fork 277
/
tubingen_apg.config
38 lines (33 loc) · 1.19 KB
/
tubingen_apg.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
//Profile config names for nf-core/configs
params {
config_profile_description = 'Generic profile for APG group of University of Tuebingen provided by nf-core/configs.'
config_profile_contact = 'Thiseas C. Lamnidis (@TCLamnidis), Stephen Clayton (@sc13-bioinf)'
config_profile_url = 'https://uni-tuebingen.de/fakultaeten/mathematisch-naturwissenschaftliche-fakultaet/fachbereiche/geowissenschaften/arbeitsgruppen/urgeschichte-naturwissenschaftliche-archaeologie/ina/archaeo-and-palaeogenetik/'
max_memory = 4.TB
max_cpus = 256
}
// Perform work directory cleanup after a successful run
cleanup = true
process {
resourceLimits = [
memory: 4.TB,
cpus: 256
]
executor = 'slurm'
queue = { task.time <= 2.h ? 'short' : task.time <= 48.h ? 'medium' : 'long' }
maxRetries = 2
}
executor {
queueSize = 28
}
singularity {
enabled = true
autoMounts = true
cacheDir = "/opt/container_tmp/apptainer/nextflow"
}
profiles {
// Profile to deactivate automatic cleanup of work directory after a successful run. Overwrites cleanup option.
debug {
cleanup = false
}
}