comparison scatterplot.xml @ 1:b4102b163488 draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/scatterplot commit 1b68ca3d083c5879e996a9df5e22963dfc9c3f90-dirty
author mvdbeek
date Wed, 14 Sep 2016 12:42:56 -0400
parents 11627baf830e
children ca89930cb23c
comparison
equal deleted inserted replaced
0:11627baf830e 1:b4102b163488
1 <tool id="scatterplot_rpy" name="Scatterplot" version="1.0.1"> 1 <tool id="scatterplot_rpy" name="Scatterplot" version="1.0.2">
2 <description>of two numeric columns</description> 2 <description>of two numeric columns</description>
3 <requirements> 3 <requirements>
4 <requirement type="package" version="1.9">numpy</requirement> 4 <requirement type="package" version="1.9">numpy</requirement>
5 <requirement type="package" version="1.0.3">rpy</requirement> 5 <requirement type="package" version="2.7.8">rpy2</requirement>
6 </requirements> 6 </requirements>
7 <command interpreter="python">scatterplot.py $input $out_file1 $col1 $col2 "$title" "$xlab" "$ylab"</command> 7 <command interpreter="python">scatterplot.py $input $out_file1 $col1 $col2 "$title" "$xlab" "$ylab"</command>
8 <inputs> 8 <inputs>
9 <param name="input" type="data" format="tabular" label="Dataset" help="Dataset missing? See TIP below"/> 9 <param name="input" type="data" format="tabular" label="Dataset" help="Dataset missing? See TIP below"/>
10 <param name="col1" type="data_column" data_ref="input" numerical="True" label="Numerical column for x axis" /> 10 <param name="col1" type="data_column" data_ref="input" numerical="True" label="Numerical column for x axis" />
14 <param name="ylab" type="text" value="V2" label="Label for y axis"/> 14 <param name="ylab" type="text" value="V2" label="Label for y axis"/>
15 </inputs> 15 </inputs>
16 <outputs> 16 <outputs>
17 <data format="pdf" name="out_file1" /> 17 <data format="pdf" name="out_file1" />
18 </outputs> 18 </outputs>
19 <!-- TODO: uncomment the following test when we have tools.update_state() working for
20 multiple dependents with the same dependency.
21 <tests> 19 <tests>
22 <test> 20 <test>
23 <param name="input" value="scatterplot_in1.tabular" ftype="tabular"/> 21 <param name="input" value="scatterplot_in1.tabular" ftype="tabular"/>
24 <param name="col1" value="2"/> 22 <param name="col1" value="2"/>
25 <param name="col2" value="3"/> 23 <param name="col2" value="3"/>
26 <param name="title" value="Scatterplot"/> 24 <param name="title" value="Scatterplot"/>
27 <param name="xlab" value="V1"/> 25 <param name="xlab" value="V1"/>
28 <param name="ylab" value="V2"/> 26 <param name="ylab" value="V2"/>
29 <output name="out_file1" file="scatterplot_out1.pdf" /> 27 <output name="out_file1" file="scatterplot_out1.pdf" compare="sim_size" />
30 </test> 28 </test>
31 </tests> 29 </tests>
32 -->
33 <help> 30 <help>
34 .. class:: infomark 31 .. class:: infomark
35 32
36 **TIP:** If your data is not TAB delimited, use *Text Manipulation-&gt;Convert* 33 **TIP:** If your data is not TAB delimited, use *Text Manipulation-&gt;Convert*
37 34