-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpasteTaxID.bash
489 lines (438 loc) · 13.5 KB
/
pasteTaxID.bash
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
#######################################################################################################################
#Autor: Sandro Valenzuela (sandrolvalenzuelad@gmail.com)
#pasteTaxID have 2 usage
#Usage 1: bash parseTaxID.bash --workdir [fastas_path] if you have a lot fastas in the workdir
#Usage 2: bash parseTaxID.bash --multifasta [multifasta_file] if you have a huge multifasta file (.fna, .fn works too)
#for debug add --debug
#######################################################################################################################
if [[ "$@" =~ "--debug" ]]; then
set -ex
else
set -e
fi
function makePythonWork {
echo '#!/usr/bin/python
import glob,os
import sys
if len(sys.argv) >= 3:
os.chdir(sys.argv[1])
fastaapend=open(sys.argv[2],"wb")
for file in glob.glob("*.fasta"):
fasta=open(file, "r")
oneline = fasta.readline()
seq =(file,oneline)
s=" "
fastaapend.write(s.join(seq))
fasta.close()
fastaapend.close()
else:
print "Workpath and file_out are needed";' > appendheaders.py
}
function makeAwkWork {
echo 'BEGIN{FS="|"}
{
if($1~">"){
split($1,array,">")
$1=array[2]
for (i=1;i<100;i++){
band=0;
if($i != ""){
if($i==ID){
ID=$(i+1);
print ID
exit 0
}
}
}
}
}' > parsefasta.awk
}
function makeMergeWork {
echo '#!/usr/bin/python
import glob,os
import sys
if len(sys.argv) >= 3:
os.chdir(sys.argv[1])
fastappend=open(sys.argv[2], "w")
for file in glob.glob("*.fasta"):
fasta=open(file, "r")
lines = fasta.readlines()
seq="".join(lines)
fastappend.write(seq)
fasta.close()
fastappend.close()
else:
print "Workpath and file_out are needed";' > merge.py
}
function fetchFunction () {
echo '
if [[ "$@" =~ "--debug" ]]; then
set -ex
else
set -e
fi
apkikey=$4
function notFoundMessage () {
if [ "$1" == "" ];then
echo "###### Warning: no ti found for $2 ######"
fi
}
headers=$1
switchfile=$2
total=$(wc -l $headers |awk '\''{print $1}'\'')
declare pids
i=1
connectionRetries=2
cat $headers |while read line
do
echo "* process $3: fetching taxid $i of $total"
#first, we get the critical data through awk and the ID that we find
fasta=$(echo $line |awk '\''{print $1}'\'')
fastaheader=$(echo $line |awk '\''{print $2}'\'')
ti=$(echo "$fastaheader" |awk -v ID="ti" -f parsefasta.awk)
opcion="ti"
if [ "$ti" == "" ];then
acc=$(echo "$fastaheader" |awk -v ID="acc" -f parsefasta.awk)
opcion="acc"
if [ "$acc" == "" ];then
gi=$(echo "$fastaheader" |awk -v ID="gi" -f parsefasta.awk)
opcion="gi"
if [ "$gi" == "" ];then
gb=$(echo "$fastaheader" |awk -v ID="gb" -f parsefasta.awk)
opcion="gb"
if [ "$gb" == "" ];then
emb=$(echo "$fastaheader" |awk -v ID="emb" -f parsefasta.awk)
opcion="emb"
if [ "$emb" == "" ];then
ref=$(echo "$fastaheader" |awk -v ID="ref" -f parsefasta.awk)
opcion="ref"
if [ "$ref" == "" ];then
opcion=""
fi
fi
fi
fi
fi
fi
case $opcion in
"ti")
echo "* Tax Id already found in $fasta, continue"
echo "$fasta $ti" >> $switchfile
;;
"acc")
retry=$connectionRetries
while [ "$ti" == "" ] | [ $retry -ge 1 ]
do
ti=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=nuccore&db=taxonomy&${apkikey}&id=$acc" | grep "<Id>"| tail -n1 | awk '\''{print $1}'\'' | cut -d '\''>'\'' -f 2 | cut -d '\''<'\'' -f 1)
if [ "$ti" == "" ];then
ti=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?dbfrom=taxonomy&${apkikey}&id=$acc&rettype=fasta&retmode=xml" | head -n10 | grep "TSeq_taxid" | cut -d '\''>'\'' -f 2 | cut -d '\''<'\'' -f 1 )
fi
retry=$((retry-1))
done
notFoundMessage $ti $acc
echo "$fasta $ti" >> $switchfile
;;
"gi")
retry=$connectionRetries
while [ "$ti" == "" ] | [ $retry -ge 1 ]
do
ti=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=nuccore&db=taxonomy&${apkikey}&id=$gi" |grep "<Id>"|tail -n1 |awk '\''{print $1}'\'' |cut -d '\''>'\'' -f 2 |cut -d '\''<'\'' -f 1)
if [ "$ti" == "$gi" ];then
ti=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nuccore&${apkikey}&id=$gi" |head -n20 |grep "id" |awk '\''{print $2}'\'' |head -n1)
fi
retry=$((retry-1))
done
notFoundMessage $ti $gi
echo "$fasta $ti" >> $switchfile
;;
"gb")
retry=$connectionRetries
while [ "$ti" == "" ] | [ $retry -ge 1 ]
do
gi=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nuccore&${apkikey}&id=$gb&rettype=fasta" |awk -v ID="gi" -f parsefasta.awk)
if [ "$gi" == "" ];then
ti=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=nuccore&db=taxonomy&${apkikey}&id=$gb" |grep "<Id>"|tail -n1 |awk '\''{print $1}'\'' |cut -d '\''>'\'' -f 2 |cut -d '\''<'\'' -f 1)
else
ti=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=nuccore&db=taxonomy&${apkikey}&id=$gi" |grep "<Id>"|tail -n1 |awk '\''{print $1}'\'' |cut -d '\''>'\'' -f 2 |cut -d '\''<'\'' -f 1)
fi
retry=$((retry-1))
done
notFoundMessage $ti $gb
echo "$fasta $ti" >> $switchfile
;;
"emb")
retry=$connectionRetries
while [ "$ti" == "" ] | [ $retry -ge 1 ]
do
gi=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nuccore&${apkikey}&id=$emb&rettype=fasta" |awk -v ID="gi" -f parsefasta.awk)
ti=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=nuccore&db=taxonomy&${apkikey}&id=$gi" |grep "<Id>"|tail -n1 |awk '\''{print $1}'\'' |cut -d '\''>'\'' -f 2 |cut -d '\''<'\'' -f 1)
retry=$((retry-1))
done
notFoundMessage $ti $emb
echo "$fasta $ti" >> $switchfile
;;
"ref")
retry=$connectionRetries
while [ "$ti" == "" ] | [ $retry -ge 1 ]
do
ti=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=nuccore&${apkikey}&id=$ref&rettype=fasta&retmode=xml" |grep "TSeq_taxid" |cut -d '\''>'\'' -f 2 |cut -d '\''<'\'' -f 1 )
retry=$((retry-1))
done
notFoundMessage $ti $ref
echo "$fasta $ti" >> $switchfile
;;
*)
#in case the id is not found
#trying first string as Accession number
retry=$connectionRetries
ac=$(echo "$fastaheader" |awk '\''{gsub(">","");print $1}'\'')
ti=""
while [ "$ti" == "" ] && [ $retry -ge 1 ]
do
ti=$(curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=sequences&${apkikey}&id=$ac&rettype=fasta&retmode=xml" |head -n10 |grep "TSeq_taxid" | cut -d">" -f 2 | cut -d"<" -f 1)
retry=$((retry-1))
done
if [ "$ti" != "" ];then
echo "$fasta $ti" >> $switchfile
else
echo "No id to fetch is available for $ac, continue"
fi
;;
esac
i=$((i+1))
done' > fetch.bash
}
statusband=0
workpathband=0
multifband=0
multiway=0
pbin=0
PYTHONBIN=/usr/bin/python
parallelJ=1
parallelband=0
apikeyband=0
apkikey=""
unameOut="$(uname -s)"
for i in "$@"
do
case $i in
"--workdir")
workpathband=1
;;
"--multifasta")
multifband=1
;;
"--pythonBin")
phome=1
;;
"--parallelJobs")
parallelband=1
;;
"--apikey")
apikeyband=1
;;
"--help")
echo "UPDATE FROM NCBI: SINCE DECEMBER 2018, NO MORE THAN THREE PARALLEL JOBS CAN FETCH THE DBs."
echo -e "FOR MORE THAN THREE JOBS PLEASE CREATE AN NCBI ACOUNT AND THEN AN API KEY (USE THE --apikey)\n how to create it?: https://ncbiinsights.ncbi.nlm.nih.gov/2017/11/02/new-api-keys-for-the-e-utilities/\n\n"
echo "Usage 1: bash parseTaxID.bash --workdir [fastas_path] if you have a lot fastas in the workdir"
echo "Usage 2: bash parseTaxID.bash --multifasta [multifasta_file] if you have a huge multifasta file (.fna, .fn works too)"
echo "Usage 3: bash parseTaxID.bash --multifasta [multifasta_file] --pythonBin to provide a python v2.7"
echo "Usage 4: bash parseTaxID.bash --multifasta [multifasta_file] --parallelJobs 10 to fetch 10 tax IDs at the same time (default 1, max [all cores or 3 without api key])"
echo "Usage 5: bash parseTaxID.bash --workdir [fastas_path] --apkikey 222220a2f4875347e41dfc568 (just an example of api key)"
exit
;;
"-h")
echo "UPDATE FROM NCBI: SINCE DECEMBER 2018, NO MORE THAN THREE PARALLEL JOBS CAN FETCH THE DBs."
echo -e "FOR MORE THAN THREE JOBS PLEASE CREATE AN NCBI ACOUNT AND THEN AN API KEY (USE THE --apikey)\n how to create it?: https://ncbiinsights.ncbi.nlm.nih.gov/2017/11/02/new-api-keys-for-the-e-utilities/\n\n"
echo "Usage 1: bash parseTaxID.bash --workdir [fastas_path] if you have a lot fastas in the workdir"
echo "Usage 2: bash parseTaxID.bash --multifasta [multifasta_file] if you have a huge multifasta file (.fna, .fn works too)"
echo "Usage 3: bash parseTaxID.bash --multifasta [multifasta_file] --pythonBin to provide a python v2.7"
echo "Usage 4: bash parseTaxID.bash --multifasta [multifasta_file] --parallelJobs 10 to fetch 10 tax IDs at the same time (default 1, max [all cores or 3 without api key])"
echo "Usage 5: bash parseTaxID.bash --workdir [fastas_path] --apkikey 222220a2f4875347e41dfc568 (just an example of api key)"
exit
;;
*)
if [ $((workpathband)) -eq 1 ];then
statusband=$((statusband+1))
workpathband=0
WORKDIR=$i
EXECUTEWORKDIR=$(pwd)
fi
if [ $((multifband)) -eq 1 ];then
statusband=$((statusband+1))
multifband=0
multiway=1
#actual=$(pwd)
multifname=$(echo "$i" |rev |cut -d '/' -f 1 |rev)
#multffolder=$(echo "$i" |rev |cut -d '/' -f 2- |rev)
#if [ "$multifname" == "$multffolder" ];then
#
#else
# cd $multffolder
# multffolder=$(pwd)
# cd $actual
# multif="$multffolder/$multifname"
#fi
multif=$(realpath $i)
if [ ! -f "$multif" ];then
echo "* Error: $multif doesn't exist"
exit
fi
fi
if [ $((pbin)) -eq 1 ];then
phome=0
PYTHONBIN=$i
fi
if [ $((parallelband)) -eq 1 ];then
parallelband=0
parallelJ=$i
if [ $((parallelJ)) -le 0 ];then
parallelJ=1
fi
if [ $((parallelJ)) -ge $(nproc) ];then
echo "* Warning: parallelJobs values will set to max CPUs detected ($(nproc))"
parallelJ=$(nproc)
fi
fi
if [ $((apikeyband)) -eq 1 ];then
apikeyband=0
apkikey=$(echo "api_key="$i"&")
fi
esac
done
if [ $((statusband)) -eq 1 ]; then
###################### SPLIT FASTAS ##########################
case $multiway in
"0")
echo "* working with workdir parameter"
;;
"1")
echo "* Splitting multifasta, (if the file is a huge file (~300.000 or more sequences), you should go for a coffee while the script works"
if [ -f $multif ];then
rm -fr $multifname""_TMP_FOLDER_DONT_TOUCH
mkdir $multifname""_TMP_FOLDER_DONT_TOUCH
cd $multifname""_TMP_FOLDER_DONT_TOUCH
awk '/^>/{close(s);s=++d".fasta"} {print > s}' $multif
echo "* Splitting complete, DON'T TOUCH $multifname_TMP_FOLDER WHILE SCRIPT IS RUNNING"
WORKDIR=$(pwd)
cd ..
else
echo "exist($multifasta) = FALSE"
exit
fi
;;
*)
echo "unknow error at multifastaflag"
exit
;;
esac
###################### MAKE HEADERS ##########################
fileout="headers.txt"
echo "* Making headers from fastas"
cd $WORKDIR
makePythonWork
case $multiway in
"0")
#workpath
$PYTHONBIN appendheaders.py "." $fileout #just take the first line of each fasta (>foo|1234|lorem ipsum)
;;
"1")
#multif
$PYTHONBIN appendheaders.py $WORKDIR $fileout #just take the first line of each fasta (>foo|1234|lorem ipsum)
;;
esac
######################################################################
###################### FETCH ID ##########################
switchfile="newheader.txt"
touch $switchfile
total=$(wc -l $fileout |awk '{print $1}')
makeAwkWork
fetchFunction
if [ $((parallelJ)) -ge 2 ]; then
if [ "$apikey" == "" ] && [ $((parallelJ)) -eq 2 ] ;then
parallelJ=2
fi
total=$(echo $total |awk -v parallelJ=$parallelJ '{print int($1/parallelJ)+1}' )
split -l $total $fileout
declare gpids
i=0
for Xchunks in $(ls -1 x[a-z][a-z])
do
if [[ "$@" =~ "--debug" ]]; then
bash fetch.bash $Xchunks $switchfile $i $apkikey "--debug" & gpids[${i}]=$(echo $!)
else
bash fetch.bash $Xchunks $switchfile $i $apkikey & gpids[${i}]=$(echo $!)
fi
i=$((i+1))
done
for id in ${gpids[@]}
do
case "${unameOut}" in
Linux*)
wait $id
;;
Darwin*)
while kill -0 $id >/dev/null 2>&1
do
sleep 10
done
;;
*)
echo "Not compatible OS"
esac
done
rm x[a-z][a-z]
else
if [[ "$@" =~ "--debug" ]]; then
bash fetch.bash $fileout $switchfile "1" "--debug"
else
bash fetch.bash $fileout $switchfile "1"
fi
fi
rm fetch.bash
#################### ADD ID's ##########################
i=1
total=$(wc -l $switchfile |awk '{print $1}')
cat $switchfile |while read line
do
fasta=$(echo "$line" |awk '{print $1}')
ti=$(echo "$line" |awk '{print $2}')
echo "working on $fasta ($i/$total)"
headerfasta=$(head -n 1 $fasta)
if ! [[ "$headerfasta" =~ ti\|[0-9].? ]];then
sed "s/>/>ti\|$ti\|/g" $fasta > tmp
else
cp $fasta tmp
fi
case $multiway in
"0")
mv tmp new_$fasta
;;
"1")
rm $fasta
mv tmp $fasta
;;
esac
i=$((i+1))
done
################### MERGE FASTAS ############################
#python merge.py folder_files file_out_name
echo "* Merging chunk files"
case $multiway in
"0")
rm -f appendheaders.py $fileout $switchfile parsefasta.awk
;;
"1")
makeMergeWork
$PYTHONBIN merge.py $WORKDIR $multifname.new
mv $multifname.new new_$multifname
mv new_$multifname ../.
cd ..
rm -rf $multifname""_TMP_FOLDER_DONT_TOUCH $switchfile
;;
esac
echo "* Done :D"
else
echo "Invalid or Missing Parameters, print --help to see the options"
exit
fi