-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow.config
executable file
·73 lines (60 loc) · 1.5 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
profiles {
standard {
process.executor = 'local'
process.maxForks = 3
singularity.enabled = false
docker.enabled = true
}
sge {
process.executor = 'sge'
process.penv = 'smp'
process.queue = 'public.q'
process.cpus = '5'
process.memory = '10.GB'
}
slurm {
process {
executor = 'slurm'
clusterOptions = '--qos=medium'
cpus = '14'
memory = '40.GB'
withName: bwa {
memory = '80.GB'
}
}
includeConfig 'config/indexLocations.config'
}
}
process {
publishDir = [
[path: './results', mode: 'copy', overwrite: 'true', pattern: "*centrifuge_report.tsv"],
[path: './results', mode: 'copy', overwrite: 'true', pattern: "*/quant.sf"],
[path: './results', mode: 'copy', overwrite: 'true', pattern: "*/*/*/*.vcf"]
]
errorStrategy = 'retry'
maxRetries = 3
maxForks = 20
cpus = 1
memory = { 10.GB * task.attempt }
withName:bamToFastq {
container = 'docker://obenauflab/virusintegration:latest'
}
withName:centrifuge {
container = 'docker://obenauflab/virusintegration:latest'
}
withName:salmon {
container = 'docker://combinelab/salmon:0.8.1'
}
withName:bwa {
container = 'docker://obenauflab/virusintegration:latest'
}
withName:manta {
container = 'docker://obenauflab/strelka:latest'
}
}
timeline {
enabled = true
}
singularity {
enabled = true
}