Mercurial > repos > bgruening > text_processing
comparison awk.xml @ 19:12615d397df7 draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 70980e329cd9fa78e74bf14a76fd4ded9bd2b91f
author | bgruening |
---|---|
date | Thu, 29 Feb 2024 22:15:20 +0000 |
parents | ddf54b12c295 |
children |
comparison
equal
deleted
inserted
replaced
18:d698c222f354 | 19:12615d397df7 |
---|---|
1 <tool id="tp_awk_tool" name="Text reformatting" version="@BASE_VERSION@.2"> | 1 <tool id="tp_awk_tool" name="Text reformatting" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
2 <description>with awk</description> | 2 <description>with awk</description> |
3 <macros> | 3 <macros> |
4 <import>macros.xml</import> | 4 <import>macros.xml</import> |
5 </macros> | 5 </macros> |
6 <expand macro="creator"/> | |
6 <requirements> | 7 <requirements> |
7 <requirement type="package" version="4.2.0">gawk</requirement> | 8 <requirement type="package" version="5.3.0">gawk</requirement> |
8 </requirements> | 9 </requirements> |
9 <version_command>awk --version | head -n 1</version_command> | 10 <version_command>awk --version | head -n 1</version_command> |
10 <command> | 11 <command> |
11 <![CDATA[ | 12 <![CDATA[ |
12 env -i | 13 env -i |
13 \$(which awk) | 14 \$(which awk) |
14 --sandbox | 15 --sandbox |
15 -v FS=' ' | 16 -v FS=' ' |
16 -v OFS=' ' | 17 -v OFS=' ' |
17 --re-interval | 18 --re-interval |
18 -f "$awk_script" | 19 -f '$awk_script' |
19 "$infile" | 20 '$infile' |
20 > "$outfile" | 21 > '$outfile' |
21 ]]> | 22 ]]> |
22 </command> | 23 </command> |
23 <configfiles> | 24 <configfiles> |
24 <configfile name="awk_script">$code</configfile> | 25 <configfile name="awk_script">$code</configfile> |
25 </configfiles> | 26 </configfiles> |
117 - matches the beginning of a line or string. | 118 - matches the beginning of a line or string. |
118 - indicates negation in a character class. For example, [^...] matches every character except the ones inside brackets. | 119 - indicates negation in a character class. For example, [^...] matches every character except the ones inside brackets. |
119 - **$** matches the end of a line or string. | 120 - **$** matches the end of a line or string. |
120 - **\|** Separates alternate possibilities. | 121 - **\|** Separates alternate possibilities. |
121 | 122 |
122 @REFERENCES@ | |
123 ]]> | 123 ]]> |
124 </help> | 124 </help> |
125 <expand macro="citations" /> | 125 <expand macro="citations" /> |
126 </tool> | 126 </tool> |