forked from BCCDC-PHL/mpxv-artic-nf
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnextflow.config
206 lines (177 loc) · 6 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
manifest {
author = 'connor-lab: Matt Bull, Sendu Bala. BCCDC-PHL: Dan Fornika. oicr-gsi: Jared Simpson, Michael Laszloffy. artic-network: Sam Wilkinson, Rachel Colquhoun'
name = 'artic-network/artic-mpxv-illumina-nf'
homePage = 'https://github.com/artic-network/artic-mpxv-illumina-nf'
description = 'Epi2me compatible Nextflow pipeline for processing ARTIC tiling amplicon Illumina sequencing reads from monkeypox virus (MPXV) samples.'
mainScript = 'main.nf'
nextflowVersion = '>=20.01.0'
version = '1.4.5'
defaultBranch = 'main'
}
epi2melabs {
tags = 'mpox,artic,amplicon,viruses,public health,illumina'
icon = 'faVirusCovid'
}
// Load base.config by default for all pipelines
includeConfig 'conf/base.conf'
def makeFastqSearchPath ( illuminaSuffixes, fastq_exts ) {
if ( params.directory ) {
def fastq_searchpath = []
for (item in illuminaSuffixes){
for(thing in fastq_exts){
fastq_searchpath.add(params.directory.toString() + '/**' + item.toString() + thing.toString())
}
}
return fastq_searchpath
}
}
params {
wf {
example_cmd = [
"--directory 'some_directory_containing_fastqs'",
"--prefix 'some_prefix'",
"--scheme_version 'artic-mpox/v1.1.1-cladeI'",
"--clade 'cladei'",
"--store_dir '/some/store_dir'",
]
}
illuminaSuffixes = ['*_R{1,2}_001', '*_R{1,2}', '*_{1,2}' ]
fastq_exts = ['.fastq.gz', '.fq.gz', '.fastq', '.fq']
fastqSearchPath = makeFastqSearchPath( params.illuminaSuffixes, params.fastq_exts )
max_memory = '32.GB'
max_cpus = 16
max_time = '12.h'
// Boilerplate options
directory = false
prefix = false
// primer_pairs_tsv = 'NO_FILE'
// profile = false
help = false
outdir = 'output'
store_dir = 'store_dir'
version = false
// // depth normalization
skip_normalize_depth = false
// Discard read pairs where the primers assigned to each read do not match
discard_incorrect_primer_pairs = false
// Target depth for bbnorm kmer-based depth normalization
normalizationTargetDepth = 200
// Allow primer positions to match within this distance from the start/end of the read
primer_match_threshold = 35
// Minimum mapping quality for reads to be kept
min_mapq = 20
//Scheme Name
scheme_name = "MPXV"
// frequency threshold to call ambiguous variant
varMinFreqThreshold = 0.25
// frequency threshold for unambiguous variant
varFreqThreshold = 0.75
// Minimum coverage depth to call variant
varMinDepth = 10
// Align consensus sequences to reference and concatenate
align_consensus = false
custom_scheme = false
skip_host_filter = false
// List schemes without running analysis
list_schemes = false
monochrome_logs = false
validate_params = true
show_hidden_params = false
schema_ignore_params = 'show_hidden_params,validate_params,monochrome_logs,aws_queue,aws_image_prefix,wf,fastqSearchPath,fastq_exts,illuminaSuffixes,out_dir,illumina-suffixes,run_phylo,no_mask'
// Squirrel options
skip_squirrel = false
no_mask = false
clade = null
run_phylo = false
outgroups = null
squirrel_assembly_refs = null
}
profiles {
debug {
dumpHashes = true
process.beforeScript = 'echo $HOSTNAME'
cleanup = false
}
conda {
conda.enabled = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
mamba {
conda.enabled = true
conda.useMamba = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
standard {
docker.enabled = true
docker.registry = 'quay.io'
docker.runOptions = "--user \$(id -u):\$(id -g) --group-add 100"
docker.userEmulation = true
conda.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
arm {
docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64'
}
test { includeConfig 'conf/test.conf' }
}
// Capture exit codes from upstream processes when piping
process.shell = ['/bin/bash', '-euo', 'pipefail']
timeline {
enabled = true
overwrite = true
file = "${params.outdir}/execution/timeline.html"
}
report {
enabled = true
overwrite = true
file = "${params.outdir}/execution/report.html"
}
trace {
enabled = true
overwrite = true
file = "${params.outdir}/execution/trace.txt"
}
def check_max(obj, type) {
if (type == 'memory') {
try {
if (obj.compareTo(params.max_memory as nextflow.util.MemoryUnit) == 1)
return params.max_memory as nextflow.util.MemoryUnit
else
return obj
} catch (all) {
println " ### ERROR ### Max memory '${params.max_memory}' is not valid! Using default value: $obj"
return obj
}
} else if (type == 'time') {
try {
if (obj.compareTo(params.max_time as nextflow.util.Duration) == 1)
return params.max_time as nextflow.util.Duration
else
return obj
} catch (all) {
println " ### ERROR ### Max time '${params.max_time}' is not valid! Using default value: $obj"
return obj
}
} else if (type == 'cpus') {
try {
return Math.min( obj, params.max_cpus as int )
} catch (all) {
println " ### ERROR ### Max cpus '${params.max_cpus}' is not valid! Using default value: $obj"
return obj
}
}
}