1 | <tool id="blastxml_to_tabular" name="BLAST XML to tabular" version="0.0.1"> |
---|
2 | <description>Convert BLAST XML output to tabular</description> |
---|
3 | <command interpreter="python"> |
---|
4 | blastxml_to_tabular.py $blastxml_file $tabular_file |
---|
5 | </command> |
---|
6 | <inputs> |
---|
7 | <param name="blastxml_file" type="data" format="blastxml" label="BLAST results as XML"/> |
---|
8 | </inputs> |
---|
9 | <outputs> |
---|
10 | <data name="tabular_file" format="tabular" label="BLAST results as tabular" /> |
---|
11 | </outputs> |
---|
12 | <requirements> |
---|
13 | </requirements> |
---|
14 | <tests> |
---|
15 | </tests> |
---|
16 | <help> |
---|
17 | |
---|
18 | **What it does** |
---|
19 | |
---|
20 | NCBI BLAST+ (and the older NCBI 'legacy' BLAST) can output in a range of formats including |
---|
21 | tabular and a more detailed XML format. A complex workflow may need both the XML and the |
---|
22 | tabular output. |
---|
23 | |
---|
24 | This tool takes the BLAST XML output and converts it into the 12 column tabular equivalent: |
---|
25 | |
---|
26 | 1. Id of your sequence |
---|
27 | 2. GI of the database hit |
---|
28 | 3. % identity |
---|
29 | 4. Alignment length |
---|
30 | 5. # mismatches |
---|
31 | 6. # gaps |
---|
32 | 7. Start position in your sequence |
---|
33 | 8. End position in your sequence |
---|
34 | 9. Start position in database hit |
---|
35 | 10. End position in database hit |
---|
36 | 11. E-value |
---|
37 | 12. Bit score |
---|
38 | |
---|
39 | |
---|
40 | </help> |
---|
41 | </tool> |
---|