Similarity Searches

Done the same way.

>>> record = Search.io.read("ncbi-blastp.out")
>>> print record.algorithm.name
BLASTP
>>> record = Search.io.read("wu-blastx.out")
>>> print record.algorithm.name
BLASTX
>>> len(record.hits)
250
>>> print record.hits[-1].description
sp|Q29277|IPPD_PIG DOPAMINE- AND CAMP-REGULATED NEURONAL
PHOSPHOPROTEIN (DARPP-32) (FRAGMENT).
>>>

 
.