diff awk.xml @ 5:20344ce0c811 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
author bgruening
date Wed, 23 Nov 2016 15:56:41 -0500
parents 5314e5d6f040
children 60edf2f8c28f
line wrap: on
line diff
--- a/awk.xml	Fri Mar 18 15:17:27 2016 -0400
+++ b/awk.xml	Wed Nov 23 15:56:41 2016 -0500
@@ -3,9 +3,9 @@
     <macros>
         <import>macros.xml</import>
     </macros>
-    <expand macro="requirements">
-        <requirement type="package" version="4.1.0">gnu_awk</requirement>
-    </expand>
+    <requirements>
+        <requirement type="package" version="4.1.3">gawk</requirement>
+    </requirements>
     <version_command>awk --version | head -n 1</version_command>
     <command>
 <![CDATA[
@@ -19,6 +19,9 @@
         > "$outfile"
 ]]>
     </command>
+    <configfiles>
+        <configfile name="awk_script">$code</configfile>
+    </configfiles>
     <inputs>
         <param name="infile" format="txt" type="data" label="File to process" />
         <param name="code" type="text" area="true" size="5x35" label="AWK Program" help="">
@@ -29,9 +32,6 @@
             </sanitizer>
         </param>
     </inputs>
-    <configfiles>
-        <configfile name="awk_script">$code</configfile>
-    </configfiles>
     <outputs>
         <data name="outfile" format_source="infile" metadata_source="infile"/>
     </outputs>
@@ -61,9 +61,6 @@
 
 - Awk by Example (http://www.ibm.com/developerworks/linux/library/l-awk1.html)
 - Long AWK tutorial (http://www.grymoire.com/Unix/Awk.html)
-- Learn AWK in 1 hour (http://www.selectorweb.com/awk.html)
-- awk cheat-sheet (http://cbi.med.harvard.edu/people/peshkin/sb302/awk_cheatsheets.pdf)
-- Collection of useful awk one-liners (http://student.northpark.edu/pemente/awk/awk1line.txt)
 
 -----