Mercurial > repos > iuc > datamash
comparison datamash-reverse.xml @ 0:72c4ad16a2ed draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/datamash commit c196ca939107154dbcfa84ed34fb01655f4fc59f-dirty
| author | iuc |
|---|---|
| date | Wed, 14 Oct 2015 16:19:37 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:72c4ad16a2ed |
|---|---|
| 1 <?xml version="1.0"?> | |
| 2 <tool id="DatamashReverse" 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> |
