diff awk.xml @ 11:74a8bef53a00 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 0ba37c1f33eeb1c77b4d9363d681fe522d9f7fe7
author bgruening
date Tue, 27 Feb 2018 17:15:37 -0500
parents 4c752559b236
children 0a8c6b61f0f4
line wrap: on
line diff
--- a/awk.xml	Tue Feb 20 09:24:19 2018 -0500
+++ b/awk.xml	Tue Feb 27 17:15:37 2018 -0500
@@ -1,10 +1,10 @@
-<tool id="tp_awk_tool" name="Text reformatting" version="@BASE_VERSION@.0">
+<tool id="tp_awk_tool" name="Text reformatting" version="@BASE_VERSION@.1">
     <description>with awk</description>
     <macros>
         <import>macros.xml</import>
     </macros>
     <requirements>
-        <requirement type="package" version="4.1.3">gawk</requirement>
+        <requirement type="package" version="4.2.0">gawk</requirement>
     </requirements>
     <version_command>awk --version | head -n 1</version_command>
     <command>
@@ -80,7 +80,7 @@
 - **/AG..AG/** will match lines that contain the regular expression **AG..AG** (meaning the characeters AG followed by any two characeters followed by AG). (This is the way to specify regular expressions on the entire line, similar to GREP.)
 - **$7 ~ /A{4}U/**  will match lines whose seventh column contains 4 consecutive A's followed by a U. (This is the way to specify regular expressions on a specific field.)
 - **10000 < $4 && $4 < 20000** will match lines whose fourth column value is larger than 10,000 but smaller than 20,000
-- **BEGIN** will be executed once only, before the first input record is read. 
+- **BEGIN** will be executed once only, before the first input record is read.
 - If no pattern is specified, all lines match (meaning the **action** part will be executed on all lines).