comparison awk.xml @ 24:5fef6d08de83 draft

"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 5f5d5802a961a77ceb092cbdef90d93e29717029-dirty"
author bgruening
date Tue, 22 Jun 2021 16:03:26 +0000
parents 97a131fbeef4
children f22a309187a3
comparison
equal deleted inserted replaced
23:28b4fd1b0e9a 24:5fef6d08de83
1 <tool id="tp_awk_tool" name="Text reformatting" version="@BASE_VERSION@.1"> 1 <tool id="tp_awk_tool" name="Text reformatting" version="@BASE_VERSION@.2">
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 <requirements> 6 <requirements>
8 </requirements> 8 </requirements>
9 <version_command>awk --version | head -n 1</version_command> 9 <version_command>awk --version | head -n 1</version_command>
10 <command> 10 <command>
11 <![CDATA[ 11 <![CDATA[
12 env -i 12 env -i
13 awk 13 \$(which awk)
14 --sandbox 14 --sandbox
15 -v FS=' ' 15 -v FS=' '
16 -v OFS=' ' 16 -v OFS=' '
17 --re-interval 17 --re-interval
18 -f "$awk_script" 18 -f "$awk_script"