diff 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
line wrap: on
line diff
--- a/awk.xml	Sat Oct 08 21:01:33 2022 +0000
+++ b/awk.xml	Thu Feb 29 22:15:20 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" />