Mercurial > repos > bgruening > text_processing
comparison find_and_replace.xml @ 10:c78b1767db2b 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:54 -0500 |
parents | d64eace4f9f3 |
children | 3c685c4106b3 |
comparison
equal
deleted
inserted
replaced
9:d9819ccb9ca7 | 10:c78b1767db2b |
---|---|
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="'"/> | 27 <remove value="'"/> |
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 $& (dollar-ampersand) and $1 $2 $3 to refer to matched text. See examples below." > | 32 help="Use simple text, or $& (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="'"/> | 35 <remove value="'"/> |
36 </valid> | 36 </valid> |