Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
commandline_remote_blast [2012/10/26 17:08]
anniearchambault
commandline_remote_blast [2015/04/14 16:30] (current)
sebastien.renaut
Line 5: Line 5:
  
 ===Batch blast at the QCBS=== ===Batch blast at the QCBS===
-As part of a collaborative project undertaken by a team of [[http://​qcbs.ca/​research/​working-groups/​working-group-1/​|QCBS researchers]],​ we aimed at isolating from the NCBI databases the orthologs of 29 different genes in 94 different species where the genome or transcriptome is partially sequences. We would soon realized that performing these searches, and downloading the best hits cannot not quickly done by multiple copying and pasting. ​ The steps described below were done on Mac OS X 10.6.8, in the 2102 summer. ​+As part of a collaborative project undertaken by a team of [[http://​qcbs.ca/​research/​working-groups/​working-group-1/​|QCBS researchers]],​ we aimed at isolating from the NCBI databases the orthologs of 29 different genes in 94 different species where the genome or transcriptome is partially sequences. We would soon realized that performing these searches, and downloading the best hits cannot not quickly done by multiple copying and pasting. ​ The steps described below were done on Mac OS X 10.6.8, in summer ​2012
  
 ==Downloading and installing the BLAST program== ==Downloading and installing the BLAST program==
-BLAST+, the new versions ​of the BLAST programs written by NCBI with improved performance and speed now allows batch blast to be performed from your computer to the online NCBI databases. It is available for download on this [[ftp://​ftp.ncbi.nlm.nih.gov/​blast/​executables/​blast+/​LATEST/​|NCBI ftp page]]. At that time, ncbi-blast-2.2.26+-universal-macosx.tar.gz was downloaded, but the current version ​is now 2.2.27+. ​+BLAST+, the new version ​of the BLAST programs written by NCBI with improved performance and speed now allows batch blast to be performed from your computer to the online NCBI databases. It is available for download on this [[ftp://​ftp.ncbi.nlm.nih.gov/​blast/​executables/​blast+/​LATEST/​|NCBI ftp page]]. At the time, ncbi-blast-2.2.26+-universal-macosx.tar.gz was downloaded, but it is frequently updated ​
  
 As explained in the BLAST+ installation instructions pages ([[http://​www.ncbi.nlm.nih.gov/​books/​NBK52640/​|UNIX and MAC]] or [[http://​www.ncbi.nlm.nih.gov/​books/​NBK52637/​|Windows PC]]), to unzip and install the program file, open the terminal, change directory until you are in the same location as the zipped file, and type the command (on a Mac): As explained in the BLAST+ installation instructions pages ([[http://​www.ncbi.nlm.nih.gov/​books/​NBK52640/​|UNIX and MAC]] or [[http://​www.ncbi.nlm.nih.gov/​books/​NBK52637/​|Windows PC]]), to unzip and install the program file, open the terminal, change directory until you are in the same location as the zipped file, and type the command (on a Mac):
Line 43: Line 43:
 cut -f 2 -d "​|"​ Aspergillus_fumigatus_blast.output.txt > ../​onlygi/​Aspergillus_fumigatus_blast.output.list.onlygi.txt cut -f 2 -d "​|"​ Aspergillus_fumigatus_blast.output.txt > ../​onlygi/​Aspergillus_fumigatus_blast.output.list.onlygi.txt
 </​code>​ </​code>​
 +
 +==Another useful command==
 +Saving comma or tab separated values files from the MAC OS 10.6.8 often introduced end of line characters (^M) problematic for manipulating txt files. Applying the following command can delete the ^M characters, and make the file readable for most programs. ​
 +<​code>​
 +tr '​\r'​ '​\n'​ < filename.txt > filename_nolineend.txt
 +</​code> ​  
  
 ===Conclusion=== ===Conclusion===