Use this to find sequence similarity of your favorite protein in the proteins of another organism.
You can use NCBI BLAST to check for sequence similarity in NCBI's database of genomes, or to a set of sequences that you can upload. However, using BLAST for many sequences can be inconvenient to process as an output, and running BLAST locally would be the best approach
Create BLAST database in a folder with the same name as the database. As an example here, the database would be the proteome of Chlamydomonas.
makeblastdb -in chlamydomonas.fa -dbtype prot -out chlamydomonas
Run BLASTp from the database folder
(Note: adjust the parameters to your needs; i.e. evalue & max_target_seqs)
(Note II: there are different ways to run blast locally. See BLASTall, BLASTn, etc; the parameters are not the same as in BLASTp)
blastp -query ../secuencias_query.fasta -db chlamydomonas -out ../resultados_blastp.txt -evalue 0.05 -outfmt "6 std qcovs" -max_target_seqs 1
BLASTp output by column. Information of BLAST terms can be found in the glossary.
Which BLAST hits do you actually keep?
→ The answer is always “It depends”. You need to know your data and there are different methods for filtering.