diff replace_text_in_line.xml @ 30:5907d248dee3 draft default tip

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 28d2fcf2649b999762fbd94bd648485b916f2f0d
author bgruening
date Sat, 17 Jan 2026 00:56:56 +0000
parents 08cdbfffce67
children
line wrap: on
line diff
--- a/replace_text_in_line.xml	Wed Jun 04 15:11:51 2025 +0000
+++ b/replace_text_in_line.xml	Sat Jan 17 00:56:56 2026 +0000
@@ -5,7 +5,7 @@
     </macros>
     <expand macro="creator"/>
     <requirements>
-        <requirement type="package" version="4.8">sed</requirement>
+        <requirement type="package" version="4.9">sed</requirement>
     </requirements>
     <version_command>sed --version | head -n 1</version_command>
     <command>
@@ -26,7 +26,7 @@
     <inputs>
       <param format="txt" name="infile" type="data" label="File to process" />
       <repeat name="replacements" title="Replacement" min="1">
-         <param name="find_pattern" type="text" size="20" label="Find pattern" help="Use simple text, or a valid regular expression (without backslashes // ) " >
+         <param name="find_pattern" type="text" label="Find pattern" help="Use simple text, or a valid regular expression">
             <sanitizer>
                 <valid initial="string.printable">
                     <remove value="&#39;"/>
@@ -38,7 +38,7 @@
                 </mapping>
             </sanitizer>
          </param>
-         <param name="replace_pattern" type="text" size="20" label="Replace with:" help="Use simple text, or &amp; (ampersand) and \\1 \\2 \\3 to refer to matched text. See examples below." >
+         <param name="replace_pattern" type="text" label="Replace with:" help="Use simple text, or &amp; (ampersand) and \1, \2, \3, etc. to refer to matched text. See examples below." >
             <sanitizer>
                 <valid initial="string.printable">
                     <remove value="&#39;"/>
@@ -50,7 +50,7 @@
                 </mapping>
             </sanitizer>
          </param>
-         <param name="sed_options" type="text" size="20" optional="true" label="Additional sed commands before replacement" help="Provide additional sed commands before the replacement (e.g., ':a;N;$!ba;')." >
+         <param name="sed_options" type="text" optional="true" label="Additional sed commands before replacement" help="Provide additional sed commands before the replacement (e.g., ':a;N;$!ba;')." >
             <sanitizer>
               <valid initial="string.printable">
                   <remove value="&#39;"/>  <!-- Removes single quotes -->