diff datamash-reverse.xml @ 0:24b9a80cac40 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/datamash commit 8a7a779896ce1b9b296557a2c31bd93f5fbb5462
author iuc
date Wed, 28 Oct 2015 12:46:25 -0400
parents
children 3234b2813413
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/datamash-reverse.xml	Wed Oct 28 12:46:25 2015 -0400
@@ -0,0 +1,48 @@
+<?xml version="1.0"?>
+<tool id="datamash_reverse" name="Reverse" version="1.0.6">
+    <description>columns in a tabular file</description>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="requirements" />
+    <expand macro="stdio" />
+    <command><![CDATA[datamash -W reverse < $in_file > $out_file]]></command>
+    <expand macro="inputs_outputs" />
+    <tests>
+        <test>
+            <param name="in_file" value="datamash_reverse_input.txt" />
+            <output file="datamash_reverse_output.txt" name="out_file" />
+        </test>
+    </tests>
+    <help>
+<![CDATA[
+@HELP_HEADER@
+
+-----
+
+**Syntax**
+
+This tools reverses the order of columns in a tabular input file.
+
+-----
+
+**Example**
+
+Input file::
+
+    Genes  Sample  Counts
+    NOX1   A1      514
+    DcP    A2      542
+    HH     B3      490
+
+Output file::
+
+    Counts  Sample  Genes
+    514     A1      NOX1
+    542     A2      DcP
+    490     B3      HH
+
+@HELP_FOOTER@
+]]>
+    </help>
+</tool>