Mercurial > repos > iuc > datamash
comparison datamash-transpose.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="DatamashTranspose" name="Transpose" version="1.0.6"> | |
| 3 <description>rows/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 transpose < $in_file > $out_file]]></command> | |
| 10 <expand macro="inputs_outputs" /> | |
| 11 <tests> | |
| 12 <test> | |
| 13 <param name="in_file" value="datamash_transpose_input.txt" /> | |
| 14 <output file="datamash_transpose_output.txt" name="out_file" /> | |
| 15 </test> | |
| 16 </tests> | |
| 17 <help> | |
| 18 <![CDATA[ | |
| 19 @HELP_HEADER@ | |
| 20 | |
| 21 **Syntax** | |
| 22 | |
| 23 This tools transposes (swaps) rows/columns in a tabular input file. | |
| 24 | |
| 25 ----- | |
| 26 | |
| 27 **Example** | |
| 28 | |
| 29 Input file:: | |
| 30 | |
| 31 Genes NOX1 DcP HH | |
| 32 Sample A1 A2 B3 | |
| 33 Counts 514 542 490 | |
| 34 | |
| 35 Output file:: | |
| 36 | |
| 37 Genes Sample Counts | |
| 38 NOX1 A1 514 | |
| 39 DcP A2 542 | |
| 40 HH B3 490 | |
| 41 | |
| 42 @HELP_FOOTER@ | |
| 43 ]]> | |
| 44 </help> | |
| 45 </tool> |
