1 | echo "Getting files from NCBI..." |
---|
2 | wget ftp://ftp.ncbi.nih.gov/pub/taxonomy/taxdump.tar.gz |
---|
3 | wget ftp://ftp.ncbi.nih.gov/pub/taxonomy/gi_taxid_nucl.dmp.gz |
---|
4 | wget ftp://ftp.ncbi.nih.gov/pub/taxonomy/gi_taxid_prot.dmp.gz |
---|
5 | echo "Unzipping untarring..." |
---|
6 | gunzip -c taxdump.tar.gz | tar xvf - |
---|
7 | gunzip gi_taxid_nucl.dmp.gz |
---|
8 | gunzip gi_taxid_prot.dmp.gz |
---|
9 | cat gi_taxid_nucl.dmp gi_taxid_prot.dmp > gi_taxid_all.dmp |
---|
10 | echo "Sorting gi2tax files..." |
---|
11 | sort -n -k 1 gi_taxid_all.dmp > gi_taxid_sorted.txt |
---|
12 | rm gi_taxid_nucl.dmp gi_taxid_prot.dmp gi_taxid_all.dmp |
---|
13 | |
---|
14 | |
---|