changeset 3:d1cd633e151a draft

Uploaded
author elindfor
date Wed, 15 Jan 2014 04:02:16 -0500
parents f3538d3548f5
children ec1cc2cd9c93
files SumTest.xml
diffstat 1 files changed, 38 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SumTest.xml	Wed Jan 15 04:02:16 2014 -0500
@@ -0,0 +1,38 @@
+<tool id="SumTest_rpy" name="SumTest">
+  <description>Sum of numbers from one column</description>
+  <command interpreter="python">SumTest.py $input $out_file1 $col1</command>
+  <inputs>
+    <param name="input" type="data" format="tabular" label="Dataset"/>
+    <param name="col1" type="data_column" data_ref="input" numerical="True" label="Numerical column for x axis" />
+  </inputs>
+  <outputs>
+    <data format="txt" name="out_file1" />
+  </outputs>
+  <requirements>
+    <requirement type="python-module">rpy</requirement>
+  </requirements>
+  <help>
+
+.. class:: infomark
+
+**TIP:** If your data is not TAB delimited, use *Text Manipulation-&gt;Convert*
+
+-----
+
+**Syntax**
+
+This tool creates a simple sum from numeric values of a selected dataset. 
+
+**Example**
+
+- Input file::
+
+    1
+    2
+    3
+    4
+    5
+    
+
+</help>
+</tool>
\ No newline at end of file