-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
45 lines (35 loc) · 799 Bytes
/
nextflow.config
File metadata and controls
45 lines (35 loc) · 799 Bytes
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
manifest {
description = 'Nextflow workflow for Battenberg to detect subclonality and copy number in matched NGS data'
author = 'Lukas Leiendecker'
}
profiles {
standard {
process.executor = 'local'
singularity.enabled = false
docker.enabled = true
process.maxForks = 3
}
sge {
process.executor = 'sge'
process.penv = 'smp'
process.queue = 'public.q'
}
slurm {
process.executor = 'slurm'
process.clusterOptions = '--qos=medium'
process.cpus = '28'
}
}
process {
errorStrategy = 'retry'
maxRetries = 3
withName:runCGPWGS {
container = 'docker://quay.io/wtsicgp/dockstore-cgpwgs:2.0.0'
}
}
singularity {
enabled = true
}
timeline {
enabled = true
}