Mercurial > repos > iuc > datamash_reverse
comparison datamash-reverse.xml @ 3:17e3b698dd52 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/datamash commit 206ac70388ea11b168366f1e30bb44157e371c6e"
author | iuc |
---|---|
date | Sun, 10 Apr 2022 11:40:57 +0000 |
parents | 0f1724dd59d2 |
children | b8a457820315 |
comparison
equal
deleted
inserted
replaced
2:0f1724dd59d2 | 3:17e3b698dd52 |
---|---|
1 <?xml version="1.0"?> | 1 <tool id="datamash_reverse" name="Reverse" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
2 <tool id="datamash_reverse" name="Reverse" version="@WRAPPER_VERSION@"> | |
3 <description>columns in a tabular file</description> | 2 <description>columns in a tabular file</description> |
4 <macros> | 3 <macros> |
5 <import>macros.xml</import> | 4 <import>macros.xml</import> |
6 </macros> | 5 </macros> |
7 <expand macro="requirements" /> | 6 <expand macro="requirements" /> |
8 <expand macro="stdio" /> | 7 <expand macro="stdio" /> |
9 <command><![CDATA[datamash reverse < $in_file > $out_file]]></command> | 8 <command><![CDATA[ |
9 datamash reverse | |
10 @FIELD_SEPARATOR@ | |
11 < $in_file > $out_file | |
12 ]]></command> | |
10 <expand macro="inputs_outputs" /> | 13 <expand macro="inputs_outputs" /> |
11 <tests> | 14 <tests> |
12 <test> | 15 <test> |
13 <param name="in_file" value="datamash_reverse_input.txt" /> | 16 <param name="in_file" value="datamash_reverse_input.txt" /> |
14 <output file="datamash_reverse_output.txt" name="out_file" /> | 17 <output file="datamash_reverse_output.txt" name="out_file" /> |
15 </test> | 18 </test> |
16 </tests> | 19 </tests> |
17 <help> | 20 <help> |
18 <![CDATA[ | 21 <![CDATA[ |
19 @HELP_HEADER@ | 22 @HELP_HEADER@ |
20 | |
21 ----- | |
22 | 23 |
23 **Syntax** | 24 **Syntax** |
24 | 25 |
25 This tools reverses the order of columns in a tabular input file. | 26 This tools reverses the order of columns in a tabular input file. |
26 | 27 |