comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:24b9a80cac40
1 <?xml version="1.0"?>
2 <tool id="datamash_reverse" name="Reverse" version="1.0.6">
3 <description>columns in a tabular file</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="requirements" />
8 <expand macro="stdio" />
9 <command><![CDATA[datamash -W reverse < $in_file > $out_file]]></command>
10 <expand macro="inputs_outputs" />
11 <tests>
12 <test>
13 <param name="in_file" value="datamash_reverse_input.txt" />
14 <output file="datamash_reverse_output.txt" name="out_file" />
15 </test>
16 </tests>
17 <help>
18 <![CDATA[
19 @HELP_HEADER@
20
21 -----
22
23 **Syntax**
24
25 This tools reverses the order of columns in a tabular input file.
26
27 -----
28
29 **Example**
30
31 Input file::
32
33 Genes Sample Counts
34 NOX1 A1 514
35 DcP A2 542
36 HH B3 490
37
38 Output file::
39
40 Counts Sample Genes
41 514 A1 NOX1
42 542 A2 DcP
43 490 B3 HH
44
45 @HELP_FOOTER@
46 ]]>
47 </help>
48 </tool>