-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
50 lines (37 loc) · 969 Bytes
/
nextflow.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
// Config file necessary for nextflow
params.help = false
// profile section
profiles {
// containerization platform section
singularity {
singularity.enabled = true
singularity.cacheDir = "${launchDir}singular" // the directory whre the singularity dirs should be created
}
docker {
docker.enabled = true
}
// Executors section
standard {
process.executor = 'local'
process.cpus = '6'
}
cluster {
process.executor = 'crg'
process.queue = 'long-sl7'
process.memory = '6GB'
process.time = '6h'
withLabel: incr_time_cpus {
errorStrategy = 'retry'
memory = '8GB'
cpus = 2
time = {6.h * task.attempt * task.attempt}
maxRetries = 4
}
}
// Mostly here for reference change it to your needs
cloud {
process.executor = 'cirrus'
process.container = 'cbcrg/imagex'
process.time = '1h'
}
}