diff replace_text_in_line.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 e39fceb6ab85
children a6f147a050a2
line wrap: on
line diff
--- a/replace_text_in_line.xml	Tue Feb 20 09:24:19 2018 -0500
+++ b/replace_text_in_line.xml	Tue Feb 27 17:15:37 2018 -0500
@@ -1,21 +1,20 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<tool id="tp_replace_in_line" name="Replace Text" version="@BASE_VERSION@.0">
+<tool id="tp_replace_in_line" name="Replace Text" version="@BASE_VERSION@.1">
     <description>in entire line</description>
     <macros>
 	<import>macros.xml</import>
     </macros>
     <requirements>
-        <requirement type="package" version="4.2.3.dev0">sed</requirement>
+        <requirement type="package" version="4.4">sed</requirement>
     </requirements>
     <version_command>sed --version | head -n 1</version_command>
     <command>
 <![CDATA[
-	sed
-            -r
-            --sandbox
-            's/$find_pattern/$replace_pattern/g'
-            '$infile'
-        > '$outfile'
+	 sed
+      -r
+      --sandbox
+      's/$find_pattern/$replace_pattern/g'
+      '$infile'
+      > '$outfile'
 ]]>
 
     </command>