Is there any tool/scripts that are already out there that can parse standard blast.txt output? I can provide an example of my output if that would help?
I am learning bioinformatics and recently run my first major scripts which used blastn and received standard blast.txt output. I need a tool to parse the output to report the following:
- Significant e-value
- Source sequence (my fasta sequence that was my input against the nt database)
- Target species id, name, and etc (the nt sequence my input had an alignment with)
I am familiar with python somewhat and feel that would be my best tool to work on first. I thank you in advance for your assistance and kindly time you spent reading this question.
I am thinking about rerunning this and producing tabular output. If I did, would there be a tool to easily do the same thing as I wrote above?
Tabular output is much easier to parse than the text format or some of the other formats. You can also more easily customize the output in tabular formats.
Can Biopython easily parse this format as well?
Not sure about BioPython, but parsing tab delimited files in python is very easy.