-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreference_update.nf
363 lines (299 loc) · 9.57 KB
/
reference_update.nf
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
#!/usr/bin/env nextflow
nextflow.enable.dsl=1
VERSION = "0.1.1"
process create_orthodb {
afterScript 'rm *.fa'
input:
val orthodb_path from "${params.orthodb_path}"
output:
path "orthodb.fasta" into orthodb_fasta
"""
touch orthodb.fasta
url_regex='^(https?|ftp|file)://[-A-Za-z0-9\\+&@#/%?=~_|!:,.;]*[-A-Za-z0-9\\+&@#/%=~_|]\\.[-A-Za-z0-9\\+&@#/%?=~_|!:,.;]*[-A-Za-z0-9\\+&@#/%=~_|]\$'
if [[ ${orthodb_path} =~ \$url_regex ]]; then wget ${orthodb_path}; else ln -s ${orthodb_path}; fi
if [[ `ls *.fa.gz 2> /dev/null` ]]; then gunzip -f *.fa.gz ; fi
if [[ `ls *.fa 2> /dev/null` ]]; then cat *.fa > orthodb.fasta; fi
"""
}
if (!params.from_local){
process get_reference_species {
conda 'environment.yml'
output:
stdout species_ch
"""
IFS=\$'\\n'; ${params.EUPATHWS_SCRIPTS_PATH}/get_reference_species -l ${params.veupathdb_username}:${params.veupathdb_password} ${params.veupathdb_domain}
"""
}
species_ch.splitText().map{it -> it.trim()}.set { org }
process get_organism {
conda 'environment.yml'
errorStrategy 'retry'
maxRetries 5
maxForks 8
publishDir "${params.REFERENCE_PATH}", mode: 'copy'
input:
val org
path "orthodb.fasta" from orthodb_fasta
output:
path 'clean_gff/*.gff3' into org_gff3
path '*_Proteins.fasta' into org_prots
path '*_Genome.fasta' into org_fasta
path '*.gaf'
path '*_chr.json' into org_chrs
path '*_meta.json' into org_meta
stdout org_ch
"""
${params.EUPATHWS_SCRIPTS_PATH}/get_organism -l ${params.veupathdb_username}:${params.veupathdb_password} ${params.veupathdb_domain} \"${org}\"
rename "s/-| /_/g" *
rename "s/[\\)\\(]//g" *
mkdir clean_gff
for x in *.gff3 ; do gt gff3 -sort -retainids -tidy \$x > clean_gff/\$x & done
ls *.gff3 | sed 's/.gff3//g'
"""
}
org_prots.concat(orthodb_fasta).collectFile(name: "all_annotated_proteins.fasta", storeDir: "${params.REFERENCE_PATH}")
} else {
species_ch = Channel.fromPath( String.format( "%s/*", params.from_local ) )
process get_all_local_organisms {
publishDir "${params.REFERENCE_PATH}", mode: 'copy'
input:
path "*" from species_ch.collect()
path "orthodb.fasta" from orthodb_fasta
output:
path 'clean_gff/*.gff3' into org_gff3
path '*_Proteins.fasta', includeInputs: true
path '*_Genome.fasta', includeInputs: true into org_fasta
path '*.gaf', includeInputs: true
path '*_chr.json', includeInputs: true into org_chrs
path '*_meta.json', includeInputs: true into org_meta
path 'all_annotated_proteins.fasta'
stdout org_ch
"""
rename "s/-| /_/g" *
rename "s/[\\)\\(]//g" *
mkdir clean_gff
for x in *.gff3 ; do gt gff3 -sort -retainids -tidy \$x > clean_gff/\$x & done
cat *_Proteins.fasta orthodb.fasta > all_annotated_proteins.fasta
ls *.gff3 | sed 's/.gff3//g'
"""
}
}
org_fasta.into{
org_fasta_augustus
org_fasta_validation
}
org_ch.into{
augustus_org_ch
validation_org_ch
}
if (params.do_augustus) {
augustus_org_ch.splitText().map{it -> it.trim()}.set { org }
process train_augustus {
input:
val x from org
path "*" from org_gff3
path "*" from org_fasta_augustus
output:
path "${x}.gff3" into gff3_out
"""
AUGUSTUS_CONFIG_PATH=${params.AUGUSTUS_CONFIG_PATH} \
${params.AUGUSTUS_SCRIPTS_PATH}/new_species.pl --species=${x} --ignore
${params.AUGUSTUS_SCRIPTS_PATH}/gff2gbSmallDNA.pl ${x}.gff3 ${x}_Genome.fasta 1000 sampled.gb
${params.AUGUSTUS_BIN_PATH}/etraining --species=${x} sampled.gb
"""
}
} else {
org_gff3.set { gff3_out }
}
process prepare_references {
input:
path "*" from gff3_out.collect()
path "*" from org_chrs.collect()
path "*" from org_meta.collect()
output:
file "references-in-*.json" into references_in
path "groups.txt" into groups
"""
for x in *.gff3; do python3 ${baseDir}/bin/parse_chromosomes.py \$x; done > ChromosomeFile.txt
ls *.gff3 | awk -F'[_]' '{print \$1}' | sort | uniq -c | awk '{if (\$1 > 0) print \$2}' > groups.txt
for x in `cat groups.txt`; do ls \$x*.gff3 | perl ${baseDir}/bin/generateReferences-i.json.pl ${params.REFERENCE_PATH} \$x ${params.AUGUSTUS_CONFIG_PATH} ${VERSION} ${params.veupathdb_domain} > references-in-\$x.json; done
"""
}
if (!params.do_all_vs_all){
groups.splitText().map{it -> it.trim()}.set { group }
process update_references{
debug true
publishDir "${params.REFERENCE_PATH}/Ref_${x}", mode: 'copy',
saveAs: { filename ->
if(filename.startsWith("${x}") & filename.endsWith(".fasta")) {
null
} else {
filename
}
}
input:
val x from group
file "*" from references_in
output:
path "*", type: "dir"
path "references.json" into refs
tuple val(x), path("${x}*.fasta") into prots
"""
cp references-in-${x}.json references-in.json
${params.COMPANION_BIN_PATH}/update_references.lua
for y in ${x}_*/proteins.fasta
do
species="\$(dirname \$y)"
cp \$y \$species.fa
${params.COMPANION_BIN_PATH}/adjust_fasta_header.pl \$species \$species.fa 1
done
"""
}
} else {
process update_all_references{
debug true
publishDir "${params.REFERENCE_PATH}/Reference", mode: 'copy'
input:
file "*" from references_in
output:
path "*", type: "dir"
path "references.json" into refs
tuple val(null), path("*.fasta") into prots
"""
echo "{\\"groups\\":{},\\"species\\":{}}" >> references.tmp
for x in references-in-*.json; do cp \$x references-in.json; ${params.COMPANION_BIN_PATH}/update_references.lua; jq -s '.[0] * .[1]' references.tmp references.json | sponge references.tmp; done
for y in */proteins.fasta; do cp \$y "\$(dirname \$y).fasta"; done
mv references.tmp references.json
"""
}
}
if (params.do_orthofinder) {
process run_orthofinder {
cpus params.diamond_threads
debug true
publishDir params.do_all_vs_all ? "${params.REFERENCE_PATH}/Reference/_all" : "${params.REFERENCE_PATH}/Ref_${grp}/_all", mode: 'copy'
input:
tuple val(grp), path("0.input_faa/*") from prots
output:
path "all_orthomcl.out"
"""
orgs=`ls 0.input_faa | wc -l`
if [[ \$orgs -gt 1 ]]
then
${params.ORTHOFINDER_PATH}/orthofinder.py -f 0.input_faa/ -o results -t ${task.cpus}
# filter out clusters with single gene.
awk 'BEGIN { FS="[ ]" }; { if (\$3) print \$0 }' results/*/Orthogroups/Orthogroups.txt > all_orthomcl.out
else
touch all_orthomcl.out
fi
"""
}
} else {
process empty_orthogroups {
publishDir params.do_all_vs_all ? "${params.REFERENCE_PATH}/Reference/_all" : "${params.REFERENCE_PATH}/Ref_${grp}/_all", mode: 'copy'
input:
tuple val(grp), path from prots
output:
path "all_orthomcl.out"
"""
touch all_orthomcl.out
"""
}
}
if (params.validate_refs) {
if (params.validate_refs == "sampled") {
process sample_fasta_for_validation {
errorStrategy 'ignore'
input:
path "*" from org_fasta_validation
output:
path '*.sampled.fa' into org_fasta_sampled
"""
in=\$(basename *_Genome.fasta)
out=\$in.sampled.fa
seqkit seq -m 10000 -M 500000 \$in > 1
reformat.sh in=1 out=\$out reads=2 minlength=10000 overwrite=true
if [ ! -s \$out ]
then
exit 1
fi
"""
}
} else if (params.validate_refs == "full") {
process full_fasta_for_validation {
input:
path "*" from org_fasta_validation
output:
path '*.sampled.fa' into org_fasta_sampled
"""
in=\$(basename *_Genome.fasta)
out=\$in.sampled.fa
cp \$in \$out
"""
}
}
process prepare_validation {
cache false
beforeScript """rm -f ${ref_d}/failed_refs.txt"""
if (params.do_all_vs_all) {
ref_dir = "${params.REFERENCE_PATH}/Reference"
} else {
ref_dir = "${params.REFERENCE_PATH}"
}
input:
val ref_d from ref_dir
path "references.json" from refs.collect()
output:
val ref_d into ref_dir
"""
touch ${ref_d}/failed_refs.txt
touch ${ref_d}/good_refs.txt
"""
}
ref_dir.into{
ref_dir_val
ref_dir_filt
}
validation_org_ch.splitText().map{it -> it.trim()}.set { org }
process run_validation {
errorStrategy 'ignore'
afterScript """
if [[ \${nxf_main_ret:=0} != 0 ]]
then
echo ${ref_species} >> ${ref_d}/failed_refs.txt
else
echo ${ref_species} >> ${ref_d}/good_refs.txt
fi
"""
input:
path "*" from org_fasta_sampled.collect()
val ref_species from org
val ref_d from ref_dir_val
output:
path ".exitcode" into exitcode
"""
if [ ! -d ${ref_d}/${ref_species} ]
then
ref_dir="\$(dirname ${ref_d}/*/${ref_species})"
echo \$ref_dir
else
ref_dir=${ref_d}
fi
nextflow run ${params.COMPANION_SCRIPT_PATH} -profile docker -c ${baseDir}/params_companion.config -with-trace -resume \
--inseq ${ref_species}*.sampled.fa \
--ref_dir \$ref_dir \
--ref_species ${ref_species} \
"""
}
process filter_failed_refs {
input:
path "*" from exitcode.collect()
val ref_d from ref_dir_filt
"""
for x in ${ref_d}/failed_refs.txt; do
refs=`grep -Ril ${params.REFERENCE_PATH}/*/references.json -e '\$x'`
jq '.species.\$x += { "validated": false }' \$refs
done
"""
}
}