annotate find_and_replace.xml @ 14:fb4ff3c42cd3 draft

"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
author bgruening
date Sat, 21 Mar 2020 13:49:11 -0400
parents 0a8c6b61f0f4
children d698c222f354
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
1 <tool id="tp_find_and_replace" name="Replace" version="@BASE_VERSION@.3">
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
2 <description>parts of text</description>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
3 <macros>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
4 <import>macros.xml</import>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
5 </macros>
5
20344ce0c811 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents: 3
diff changeset
6 <requirements>
7
01ca80da2266 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 4379e712f76f2bb12ee2cc270dd8a0e806df2cd6
bgruening
parents: 6
diff changeset
7 <requirement type="package" version="5.22.0.1">perl</requirement>
5
20344ce0c811 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents: 3
diff changeset
8 </requirements>
20344ce0c811 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents: 3
diff changeset
9 <command>
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
10 <![CDATA[
5
20344ce0c811 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents: 3
diff changeset
11 perl '$__tool_directory__/find_and_replace'
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
12 #if $searchwhere.searchwhere_select == "column":
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
13 -c $searchwhere.column
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
14 #end if
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
15 -o $outfile
13
0a8c6b61f0f4 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 4f79443517baf378fbfe1f81be361d97f2938601
bgruening
parents: 7
diff changeset
16 $global
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
17 $caseinsensitive
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
18 $wholewords
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
19 $skip_first_line
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
20 $is_regex
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
21 '$find_pattern'
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
22 '$replace_pattern'
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
23 '$infile'
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
24 ]]>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
25 </command>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
26 <inputs>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
27 <param name="infile" format="txt" type="data" label="File to process" />
3
37e1eb05b1b4 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 10052765d6b712cf7d38356af4251fcc38a339b6-dirty
bgruening
parents: 0
diff changeset
28 <param name="find_pattern" type="text" label="Find pattern" help="Use simple text, or a valid regular expression (without backslashes // ) " >
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
29 <sanitizer>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
30 <valid initial="string.printable">
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
31 <remove value="&apos;"/>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
32 </valid>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
33 </sanitizer>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
34 </param>
3
37e1eb05b1b4 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 10052765d6b712cf7d38356af4251fcc38a339b6-dirty
bgruening
parents: 0
diff changeset
35 <param name="replace_pattern" type="text" label="Replace with"
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
36 help="Use simple text, or $&amp; (dollar-ampersand) and $1 $2 $3 to refer to matched text. See examples below." >
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
37 <sanitizer>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
38 <valid initial="string.printable">
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
39 <remove value="&apos;"/>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
40 </valid>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
41 </sanitizer>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
42 </param>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
43 <param name="is_regex" type="boolean" checked="false" truevalue="-r" falsevalue=""
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
44 label="Find-Pattern is a regular expression" help="see help section for details." />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
45
13
0a8c6b61f0f4 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 4f79443517baf378fbfe1f81be361d97f2938601
bgruening
parents: 7
diff changeset
46 <param name="global" type="boolean" checked="false" truevalue="-g" falsevalue=""
0a8c6b61f0f4 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 4f79443517baf378fbfe1f81be361d97f2938601
bgruening
parents: 7
diff changeset
47 label="Replace all occurences of the pattern" />
0a8c6b61f0f4 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 4f79443517baf378fbfe1f81be361d97f2938601
bgruening
parents: 7
diff changeset
48
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
49 <param name="caseinsensitive" type="boolean" checked="false" truevalue="-i" falsevalue=""
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
50 label="Case-Insensitive search" help="" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
51
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
52 <param name="wholewords" type="boolean" checked="false" truevalue="-w" falsevalue=""
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
53 label="Find whole-words" help="ignore partial matches (e.g. 'apple' will not match 'snapple')" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
54
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
55 <param name="skip_first_line" type="boolean" checked="false" truevalue="-s" falsevalue=""
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
56 label="Ignore first line" help="Select this option if the first line contains column headers. Text in the line will not be replaced. " />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
57
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
58 <conditional name="searchwhere">
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
59 <param name="searchwhere_select" type="select" label="Find and Replace text in">
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
60 <option value="line" selected="true">entire line</option>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
61 <option value="column">specific column</option>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
62 </param>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
63 <when value="line" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
64 <when value="column">
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
65 <param name="column" label="in column" type="data_column" data_ref="infile" accept_default="true" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
66 </when>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
67 </conditional>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
68 </inputs>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
69 <outputs>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
70 <data format_source="infile" name="outfile" metadata_source="infile" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
71 </outputs>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
72 <tests>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
73 <test>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
74 <param name="infile" value="find_and_replace1.txt" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
75 <param name="find_pattern" value="day" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
76 <param name="replace_pattern" value="great day" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
77 <param name="is_regex" value="False" />
13
0a8c6b61f0f4 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 4f79443517baf378fbfe1f81be361d97f2938601
bgruening
parents: 7
diff changeset
78 <param name="global" value="true" />
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
79 <param name="caseinsensitive" value="False" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
80 <param name="wholewords" value="True" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
81 <output name="outfile" file="find_and_replace_results1.txt" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
82 </test>
14
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
83 <!-- test that columns are split by tab not space. input has no tab loads of spaces
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
84 .. therefore the ftype needs to be set.
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
85 result should be the same as in test 1 which works on whole line -->
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
86 <test>
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
87 <param name="infile" value="find_and_replace1.txt" ftype="tabular" />
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
88 <param name="find_pattern" value="day" />
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
89 <param name="replace_pattern" value="great day" />
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
90 <param name="is_regex" value="False" />
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
91 <param name="global" value="true" />
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
92 <param name="caseinsensitive" value="False" />
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
93 <param name="wholewords" value="True" />
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
94 <conditional name="searchwhere">
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
95 <param name="searchwhere_select" value="column"/>
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
96 <param name="column" value="1" />
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
97 </conditional>
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
98 <output name="outfile" file="find_and_replace_results1.txt" />
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 13
diff changeset
99 </test>
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
100 <test>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
101 <param name="infile" value="find_and_replace2.txt" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
102 <param name="find_pattern" value="^chr" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
103 <param name="replace_pattern" value="" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
104 <param name="is_regex" value="True" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
105 <param name="caseinsensitive" value="False" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
106 <param name="wholewords" value="False" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
107 <param name="searchwhere_select" value="column" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
108 <param name="column" value="3" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
109 <output name="outfile" file="find_and_replace_results2.txt" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
110 </test>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
111 </tests>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
112 <help>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
113 <![CDATA[
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
114 **What it does**
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
115
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
116 This tool finds $ replaces text in an input dataset.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
117
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
118 .. class:: infomark
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
119
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
120 The **pattern to find** can be a simple text string, or a perl **regular expression** string (depending on *pattern is a regex* check-box).
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
121
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
122 .. class:: infomark
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
123
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
124 When using regular expressions, the **replace pattern** can contain back-references ( e.g. \\1 )
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
125
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
126 .. class:: infomark
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
127
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
128 This tool uses Perl regular expression syntax.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
129
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
130 -----
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
131
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
132 **Examples of *regular-expression* Find Patterns**
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
133
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
134 - **HELLO** The word 'HELLO' (case sensitive).
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
135 - **AG.T** The letters A,G followed by any single character, followed by the letter T.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
136 - **A{4,}** Four or more consecutive A's.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
137 - **chr2[012]\\t** The words 'chr20' or 'chr21' or 'chr22' followed by a tab character.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
138 - **hsa-mir-([^ ]+)** The text 'hsa-mir-' followed by one-or-more non-space characters. When using parenthesis, the matched content of the parenthesis can be accessed with **\1** in the **replace** pattern.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
139
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
140
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
141 **Examples of Replace Patterns**
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
142
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
143 - **WORLD** The word 'WORLD' will be placed whereever the find pattern was found.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
144 - **FOO-$&-BAR** Each time the find pattern is found, it will be surrounded with 'FOO-' at the begining and '-BAR' at the end. **$&** (dollar-ampersand) represents the matched find pattern.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
145 - **$1** The text which matched the first parenthesis in the Find Pattern.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
146
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
147
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
148 -----
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
149
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
150 **Example 1**
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
151
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
152 **Find Pattern:** HELLO
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
153 **Replace Pattern:** WORLD
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
154 **Regular Expression:** no
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
155 **Replace what:** entire line
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
156
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
157 Every time the word HELLO is found, it will be replaced with the word WORLD.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
158
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
159 -----
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
160
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
161 **Example 2**
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
162
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
163 **Find Pattern:** ^chr
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
164 **Replace Pattern:** (empty)
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
165 **Regular Expression:** yes
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
166 **Replace what:** column 11
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
167
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
168 If column 11 (of every line) begins with ther letters 'chr', they will be removed. Effectively, it'll turn "chr4" into "4" and "chrXHet" into "XHet"
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
169
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
170
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
171 -----
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
172
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
173 **Perl's Regular Expression Syntax**
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
174
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
175 The Find & Replace tool searches the data for lines containing or not containing a match to the given pattern. A Regular Expression is a pattern descibing a certain amount of text.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
176
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
177 - **( ) { } [ ] . * ? + \\ ^ $** are all special characters. **\\** can be used to "escape" a special character, allowing that special character to be searched for.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
178 - **^** matches the beginning of a string(but not an internal line).
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
179 - **(** .. **)** groups a particular pattern.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
180 - **{** n or n, or n,m **}** specifies an expected number of repetitions of the preceding pattern.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
181
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
182 - **{n}** The preceding item is matched exactly n times.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
183 - **{n,}** The preceding item ismatched n or more times.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
184 - **{n,m}** The preceding item is matched at least n times but not more than m times.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
185
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
186 - **[** ... **]** creates a character class. Within the brackets, single characters can be placed. A dash (-) may be used to indicate a range such as **a-z**.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
187 - **.** Matches any single character except a newline.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
188 - ***** The preceding item will be matched zero or more times.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
189 - **?** The preceding item is optional and matched at most once.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
190 - **+** The preceding item will be matched one or more times.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
191 - **^** has two meaning:
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
192 - matches the beginning of a line or string.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
193 - indicates negation in a character class. For example, [^...] matches every character except the ones inside brackets.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
194 - **$** matches the end of a line or string.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
195 - **\\|** Separates alternate possibilities.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
196 - **\\d** matches a single digit
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
197 - **\\w** matches a single letter or digit or an underscore.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
198 - **\\s** matches a single white-space (space or tabs).
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
199
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
200 @REFERENCES@
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
201 ]]>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
202 </help>
6
60edf2f8c28f planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b'e6ee273f75fff61d1e419283fa8088528cf59470\n'
bgruening
parents: 5
diff changeset
203 <expand macro="citations" />
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
204 </tool>