-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
133 lines (103 loc) · 2.89 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
manifest {
name = 'crukci-bioinformatics/mga-referencebuilder'
author = 'Richard Bowers'
description = 'CRUK-CI MGA reference building pipeline. For internal use only.'
mainScript = 'mgabuilder.nf'
nextflowVersion = '>=20.0.0'
version = '1.0.0'
}
clean = true
executor {
$slurm {
queueSize = 200
pollInterval = '30sec'
queue = 'general'
clusterOptions = "--nodes=1 --open-mode=truncate"
jobName = { "'${task.process.split(/:/).last()} ${task.tag}'" }
}
}
singularity.enabled = true
singularity.autoMounts = true
singularity.runOptions = "--bind '${projectDir}'"
process {
cpus = 1
memory = '1GB'
time = '1h'
tag = { "${genomeInfo.base}" }
container = "crukcibioinformatics/mgareferencebuilder:${manifest.version}"
errorStrategy = {
task.exitStatus in [ 104, 134, 137..140 ].flatten() ? 'retry' : 'ignore'
}
withLabel:picard {
memory = { 2.GB * 2 ** (task.attempt - 1) } // So 2, 4, 8, 16 etc
time = { 8.h * task.attempt }
maxRetries = 3
}
withLabel:builder {
memory = { 16.GB * 2 ** (task.attempt - 1) } // So 16, 32, 64
time = { 1.d * task.attempt }
maxRetries = 2
}
withLabel:assembler {
memory = { 2.GB * 2 ** (task.attempt - 1) } // So 2, 4, 8, 16
time = { 8.h * task.attempt }
maxRetries = 3
}
withLabel:fetcher {
memory = 4.MB
time = '1h'
}
withLabel:tiny {
memory = 4.MB
time = '5m'
executor = 'local'
}
}
profiles {
standard {
params.referenceTop = '/data/personal/bowers01/mga_reference_data'
process {
executor = 'local'
withName: bowtie1Index {
maxForks = 2
}
}
executor.$local.cpus = 4
executor.$local.memory = '32GB'
}
cluster {
params.referenceTop = '/mnt/scratcha/bioinformatics/reference_data/mga'
process {
executor = 'slurm'
jobName = { "'ReferenceBuilder ${task.process.split(/:/).last()} ${task.tag}'" }
}
}
bioinf {
params.referenceTop = '/data/personal/bowers01/mga_reference_data'
process {
executor = 'local'
withName: bowtie1Index {
maxForks = 5
}
}
executor.$local.cpus = 40
executor.$local.memory = '200GB'
}
}
params {
// Location of properties files.
genomeInfoDirectory = "${projectDir}/genomeinfo"
// Software versions.
BOWTIE1_VERSION = '1.3.1'
// Application paths in the container.
BOWTIE1 = "/opt/bowtie-${BOWTIE1_VERSION}/bowtie-build"
REFBUILDER = "/usr/local/lib/mga-referencebuilder.jar"
}
timeline {
enabled = true
file = "${launchDir}/work/execution_timeline.html"
}
report {
enabled = true
file = "${launchDir}/work/execution_report.html"
}