1
|
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->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> |