diff awk.xml @ 26:f22a309187a3 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit c2b1677d1c94433f777c2dc28ac8eec0a99cc6a7
author bgruening
date Fri, 16 Aug 2024 10:41:17 +0000
parents 5fef6d08de83
children 08cdbfffce67
line wrap: on
line diff
--- a/awk.xml	Sat Oct 08 20:59:15 2022 +0000
+++ b/awk.xml	Fri Aug 16 10:41:17 2024 +0000
@@ -1,10 +1,11 @@
-<tool id="tp_awk_tool" name="Text reformatting" version="@BASE_VERSION@.2">
+<tool id="tp_awk_tool" name="Text reformatting" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
     <description>with awk</description>
     <macros>
         <import>macros.xml</import>
     </macros>
+    <expand macro="creator"/>
     <requirements>
-        <requirement type="package" version="4.2.0">gawk</requirement>
+        <requirement type="package" version="5.3.0">gawk</requirement>
     </requirements>
     <version_command>awk --version | head -n 1</version_command>
     <command>
@@ -15,9 +16,9 @@
             -v FS='	'
             -v OFS='	'
             --re-interval
-            -f "$awk_script"
-            "$infile"
-        > "$outfile"
+            -f '$awk_script'
+            '$infile'
+        > '$outfile'
 ]]>
     </command>
     <configfiles>
@@ -119,7 +120,6 @@
 - **$** matches the end of a line or string.
 - **\|** Separates alternate possibilities.
 
-@REFERENCES@
 ]]>
   </help>
   <expand macro="citations" />