comparison find_and_replace.xml @ 3:37e1eb05b1b4 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 10052765d6b712cf7d38356af4251fcc38a339b6-dirty
author bgruening
date Fri, 26 Feb 2016 12:22:19 -0500
parents 5314e5d6f040
children 20344ce0c811
comparison
equal deleted inserted replaced
2:616efa22d193 3:37e1eb05b1b4
19 '$infile' 19 '$infile'
20 ]]> 20 ]]>
21 </command> 21 </command>
22 <inputs> 22 <inputs>
23 <param name="infile" format="txt" type="data" label="File to process" /> 23 <param name="infile" format="txt" type="data" label="File to process" />
24 <param name="find_pattern" type="text" size="20" label="Find pattern" help="Use simple text, or a valid regular expression (without backslashes // ) " > 24 <param name="find_pattern" type="text" label="Find pattern" help="Use simple text, or a valid regular expression (without backslashes // ) " >
25 <sanitizer> 25 <sanitizer>
26 <valid initial="string.printable"> 26 <valid initial="string.printable">
27 <remove value="&apos;"/> 27 <remove value="&apos;"/>
28 </valid> 28 </valid>
29 </sanitizer> 29 </sanitizer>
30 </param> 30 </param>
31 <param name="replace_pattern" type="text" size="20" label="Replace with" 31 <param name="replace_pattern" type="text" label="Replace with"
32 help="Use simple text, or $&amp; (dollar-ampersand) and $1 $2 $3 to refer to matched text. See examples below." > 32 help="Use simple text, or $&amp; (dollar-ampersand) and $1 $2 $3 to refer to matched text. See examples below." >
33 <sanitizer> 33 <sanitizer>
34 <valid initial="string.printable"> 34 <valid initial="string.printable">
35 <remove value="&apos;"/> 35 <remove value="&apos;"/>
36 </valid> 36 </valid>