comparison SumTest.xml @ 1:2ab9940c1fb2 draft

Uploaded
author elindfor
date Tue, 14 Jan 2014 11:08:03 -0500
parents
children
comparison
equal deleted inserted replaced
0:d0fbc0d93d05 1:2ab9940c1fb2
1 <tool id="SumTest_rpy" name="SumTest">
2 <description>Sum of numbers from one column</description>
3 <command interpreter="r">SumTest.py $input $out_file1 $col1</command>
4 <inputs>
5 <param name="input" type="data" format="tabular" label="Dataset"/>
6 <param name="col1" type="data_column" data_ref="input" numerical="True" label="Numerical column for x axis" />
7 </inputs>
8 <outputs>
9 <data format="txt" name="out_file1" />
10 </outputs>
11 <requirements>
12 <requirement type="python-module">rpy</requirement>
13 </requirements>
14 <help>
15
16 .. class:: infomark
17
18 **TIP:** If your data is not TAB delimited, use *Text Manipulation-&gt;Convert*
19
20 -----
21
22 **Syntax**
23
24 This tool creates a simple sum from numeric values of a selected dataset.
25
26 **Example**
27
28 - Input file::
29
30 1
31 2
32 3
33 4
34 5
35
36
37 </help>
38 </tool>