Mercurial > repos > bgruening > text_processing
annotate sed.xml @ 13:0a8c6b61f0f4 draft
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 4f79443517baf378fbfe1f81be361d97f2938601
author | bgruening |
---|---|
date | Wed, 03 Apr 2019 13:56:01 -0400 |
parents | 74a8bef53a00 |
children | 12615d397df7 |
rev | line source |
---|---|
11
74a8bef53a00
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 0ba37c1f33eeb1c77b4d9363d681fe522d9f7fe7
bgruening
parents:
6
diff
changeset
|
1 <tool id="tp_sed_tool" name="Text transformation" version="@BASE_VERSION@.1"> |
0 | 2 <description>with sed</description> |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
5
20344ce0c811
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents:
0
diff
changeset
|
6 <requirements> |
11
74a8bef53a00
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 0ba37c1f33eeb1c77b4d9363d681fe522d9f7fe7
bgruening
parents:
6
diff
changeset
|
7 <requirement type="package" version="4.4">sed</requirement> |
5
20344ce0c811
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents:
0
diff
changeset
|
8 </requirements> |
0 | 9 <version_command>sed --version | head -n 1</version_command> |
10 <command> | |
11 <![CDATA[ | |
12 sed | |
13 --sandbox | |
14 -r | |
15 #if $adv_opts.adv_opts_selector == 'advanced': | |
16 $adv_opts.silent | |
17 #end if | |
18 -f '$sed_script' | |
19 '$infile' | |
20 > '$output' | |
21 ]]> | |
22 </command> | |
5
20344ce0c811
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents:
0
diff
changeset
|
23 <configfiles> |
20344ce0c811
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents:
0
diff
changeset
|
24 <configfile name="sed_script"> |
20344ce0c811
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents:
0
diff
changeset
|
25 $code |
20344ce0c811
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents:
0
diff
changeset
|
26 </configfile> |
20344ce0c811
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents:
0
diff
changeset
|
27 </configfiles> |
0 | 28 <inputs> |
29 <param format="txt" name="infile" type="data" label="File to process" /> | |
30 <param name="code" type="text" area="true" size="5x35" label="SED Program" help=""> | |
31 <sanitizer> | |
32 <valid initial="string.printable"> | |
33 <remove value="'"/> | |
34 </valid> | |
35 </sanitizer> | |
36 </param> | |
37 <conditional name="adv_opts"> | |
38 <param name="adv_opts_selector" type="select" label="Advanced Options"> | |
39 <option value="basic" selected="True">Hide Advanced Options</option> | |
40 <option value="advanced">Show Advanced Options</option> | |
41 </param> | |
42 <when value="basic" /> | |
43 <when value="advanced"> | |
44 <param name="silent" type="select" label="Operation mode" help="Same as 'sed -n', leave at 'normal' unless you know what you're doing." > | |
45 <option value="">normal</option> | |
46 <option value="-n">silent</option> | |
47 </param> | |
48 </when> | |
49 </conditional> | |
50 </inputs> | |
51 <outputs> | |
52 <data name="output" format_source="infile" metadata_source="infile" /> | |
53 </outputs> | |
54 <tests> | |
55 <test> | |
56 <param name="infile" value="sed1.txt" /> | |
57 <param name="code" value="1d ; s/foo/bar/" /> | |
58 <param name="silent" value="" /> | |
59 <output name="output" file="sed_results1.txt" /> | |
60 </test> | |
61 <test> | |
62 <param name="infile" value="sed1.txt" /> | |
63 <param name="code" value="/foo/ { s/foo/baz/g ; p }" /> | |
64 <param name="adv_opts_selector" value="advanced" /> | |
65 <param name="silent" value="-n" /> | |
66 <output name="output" file="sed_results2.txt" /> | |
67 </test> | |
68 </tests> | |
69 <help> | |
70 <![CDATA[ | |
71 **What it does** | |
72 | |
73 This tool runs the unix **sed** command on the selected data file. | |
74 | |
75 .. class:: infomark | |
76 | |
77 **TIP:** This tool uses the **extended regular** expression syntax (same as running 'sed -r'). | |
78 | |
79 | |
80 | |
81 **Further reading** | |
82 | |
83 - Short sed tutorial (http://www.linuxhowtos.org/System/sed_tutorial.htm) | |
84 - Long sed tutorial (http://www.grymoire.com/Unix/Sed.html) | |
85 - sed faq with good examples (http://sed.sourceforge.net/sedfaq.html) | |
86 - sed cheat-sheet (http://www.catonmat.net/download/sed.stream.editor.cheat.sheet.pdf) | |
87 | |
88 ----- | |
89 | |
90 **Sed commands** | |
91 | |
92 The most useful sed command is **s** (substitute). | |
93 | |
94 **Examples** | |
95 | |
96 - **s/hsa//** will remove the first instance of 'hsa' in every line. | |
97 - **s/hsa//g** will remove all instances (beacuse of the **g**) of 'hsa' in every line. | |
98 - **s/A{4,}/--&--/g** will find sequences of 4 or more consecutive A's, and once found, will surround them with two dashes from each side. The **&** marker is a place holder for 'whatever matched the regular expression'. | |
99 - **s/hsa-mir-([^ ]+)/short name: \\1 full name: &/** will find strings such as 'hsa-mir-43a' (the regular expression is 'hsa-mir-' followed by non-space characters) and will replace it will string such as 'short name: 43a full name: hsa-mir-43a'. The **\\1** marker is a place holder for 'whatever matched the first parenthesis' (similar to perl's **$1**) . | |
100 | |
101 | |
102 **sed's Regular Expression Syntax** | |
103 | |
104 The select 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. | |
105 | |
106 - **( ) { } [ ] . * ? + \ ^ $** are all special characters. **\\** can be used to "escape" a special character, allowing that special character to be searched for. | |
107 - **^** matches the beginning of a string(but not an internal line). | |
108 - **(** .. **)** groups a particular pattern. | |
109 - **{** n or n, or n,m **}** specifies an expected number of repetitions of the preceding pattern. | |
110 | |
111 - **{n}** The preceding item is matched exactly n times. | |
112 - **{n,}** The preceding item ismatched n or more times. | |
113 - **{n,m}** The preceding item is matched at least n times but not more than m times. | |
114 | |
115 - **[** ... **]** 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**. | |
116 - **.** Matches any single character except a newline. | |
117 - ***** The preceding item will be matched zero or more times. | |
118 - **?** The preceding item is optional and matched at most once. | |
119 - **+** The preceding item will be matched one or more times. | |
120 - **^** has two meaning: | |
121 - matches the beginning of a line or string. | |
122 - indicates negation in a character class. For example, [^...] matches every character except the ones inside brackets. | |
123 - **$** matches the end of a line or string. | |
124 - **\|** Separates alternate possibilities. | |
125 | |
126 | |
127 **Note**: SED uses extended regular expression syntax, not Perl syntax. **\\d**, **\\w**, **\\s** etc. are **not** supported. | |
128 | |
129 @REFERENCES@ | |
130 ]]> | |
131 </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
|
132 <expand macro="citations" /> |
0 | 133 </tool> |