Mercurial > repos > jankanis > blast2html
comparison tool_dependencies.xml @ 29:420d0508dcd6
reorganise to match galaxy tool shed layout
author | Jan Kanis <jan.code@jankanis.nl> |
---|---|
date | Thu, 15 May 2014 16:50:38 +0200 |
parents | blast2html.xml@8a8c0c71b5d1 |
children | ce8f29efc0a1 |
comparison
equal
deleted
inserted
replaced
28:8a8c0c71b5d1 | 29:420d0508dcd6 |
---|---|
1 <tool id="blast2html" name="blast2html" version="0.0.1"> | |
2 | |
3 <description>Convert BLAST XML to HTML</description> | |
4 | |
5 <requirements> | |
6 <requirement type="python-module">jinja2</requirement> | |
7 <requirement type="python-module">lxml</requirement> | |
8 </requirements> | |
9 | |
10 <command interpreter="python">blast2html.py -i "${input}" -o "${output}"</command> | |
11 | |
12 <inputs> | |
13 <param format="blast" name="input" type="data" label="Source file"/> | |
14 </inputs> | |
15 | |
16 <outputs> | |
17 <data format="html" name="output" /> | |
18 </outputs> | |
19 | |
20 <tests> | |
21 <test> | |
22 <param name="input" value="blast-view_test1_in.xml"/> | |
23 <output name="out_file1" file="blast-view_test1_out.html"/> | |
24 </test> | |
25 <test> | |
26 <param name="input" value="blast-view_test2_in.xml"/> | |
27 <output name="out_file1" file="blast-view_test2_out.html"/> | |
28 </test> | |
29 </tests> | |
30 | |
31 <help> | |
32 This tool converts the default BLAST XML result into a HTML document | |
33 </help> | |
34 | |
35 </tool> |