comparison blast2html.xml @ 0:a54279222d84 draft

Imported from capsule None
author jankanis
date Mon, 19 May 2014 09:43:54 -0400
parents
children 9f5b46e90bd3
comparison
equal deleted inserted replaced
-1:000000000000 0:a54279222d84
1 <tool id="blast2html" name="blast2html" version="0.0.3">
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 <requirement type="python-module">argparse</requirement>
9 </requirements>
10
11 <command interpreter="python">blast2html.py -i "${input}" -o "${output}"</command>
12
13 <inputs>
14 <param format="blast" name="input" type="data" label="Source file"/>
15 </inputs>
16
17 <outputs>
18 <data format="html" name="output" />
19 </outputs>
20
21 <tests>
22 <test>
23 <param name="input" value="blast xml example1.xml"/>
24 <output name="out_file1" file="blast xml example1.html"/>
25 </test>
26 <test>
27 <param name="input" value="blast xml example2.xml"/>
28 <output name="out_file1" file="blast xml example2.html"/>
29 </test>
30 <test>
31 <param name="input" value="blast xml example3.xml"/>
32 <output name="out_file1" file="blast xml example3.html"/>
33 </test>
34 <test>
35 <param name="input" value="blast xml example4.xml"/>
36 <output name="out_file1" file="blast xml example4.html"/>
37 </test>
38 </tests>
39
40 <help>
41 This tool converts the default BLAST XML result into a HTML document
42 </help>
43
44 </tool>