forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ethz_euler.config
54 lines (45 loc) · 1.42 KB
/
ethz_euler.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
43
44
45
46
47
48
49
50
51
52
53
54
/*
* ------------------------------------------------------------------
* nf-core pipelines config file for the ETH Zurich Euler cluster
* ------------------------------------------------------------------
*/
params {
config_profile_name = 'ethz_euler'
config_profile_description = 'ETH Zurich Euler cluster profile -- provided by nf-core/configs'
config_profile_contact = 'Joao Agostinho de Sousa (github: @jpadesousa; email: [email protected])'
config_profile_url = 'https://scicomp.ethz.ch/wiki/Euler'
max_memory = 4.TB
max_cpus = 128
max_time = 120.h
igenomes_base = '/cluster/project/igenomes'
igenomes_ignore = false
}
executor {
name = 'slurm'
perCpuMemAllocation = true
}
process {
resourceLimits = [
memory: 4.TB,
cpus: 128,
time: 120.h
]
scratch = 'true'
errorStrategy = 'retry'
maxRetries = 3
beforeScript = 'module load eth_proxy'
}
singularity {
enabled = true
autoMounts = true
}
trace {
trace.overwrite = true
enabled = true
}
// On a successful completion of a Nextflow run, automatically delete all intermediate files stored in the work/ directory
cleanup = true
// Allows to override the default cleanup = true behaviour for debugging
debug {
cleanup = false
}