comparison awk.xml @ 16:ddf54b12c295 draft

"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit ded469a802a0496c9a6a2daee7b9505bd8698802-dirty"
author bgruening
date Tue, 06 Oct 2020 09:47:04 +0000
parents 0a8c6b61f0f4
children 12615d397df7
comparison
equal deleted inserted replaced
15:9ff72e942410 16:ddf54b12c295
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"