comparison visualize.xml @ 10:54223991334b default tip

tool_dependencies.xml: Defined PIL dependency
author Nick Stoler <nstoler@psu.edu>
date Mon, 03 Mar 2014 12:54:02 -0500
parents abed07ebeac7
children
comparison
equal deleted inserted replaced
9:abed07ebeac7 10:54223991334b
1 <tool id="dnagram" name="DNA graphic" version="0.1"> 1 <tool id="dnagram" name="DNA graphic" version="0.1">
2
3 <requirements>
4 <requirement type="package" version="1.1.7">pil</requirement>
5 </requirements>
6
2 <description>Create a graphic from a DNA sequence</description> 7 <description>Create a graphic from a DNA sequence</description>
3 <command interpreter="python">visualize.py $input $output $size 8
4 </command> 9 <command interpreter="python">visualize.py $input $output $size</command>
10
5 <inputs> 11 <inputs>
6 <param name="input" type="data" format="fasta,text" label="Input sequence" /> 12 <param name="input" type="data" format="fasta,text" label="Input sequence" />
7 <param name="size" type="integer" value="512" min="0" max="16384" label="Output image width (pixels)" help="Height will be the same. A power of 2 is highly recommended." /> 13 <param name="size" type="integer" value="512" min="0" max="16384" label="Output image width (pixels)" help="Height will be the same. A power of 2 is highly recommended." />
8 </inputs> 14 </inputs>
15
9 <outputs> 16 <outputs>
10 <data name="output" format="png"/> 17 <data name="output" format="png"/>
11 </outputs> 18 </outputs>
12 19
13 <help> 20 <help>