fstrozzi-Gmap 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html>
7
+ <head>
8
+ <title>close (Gmap::Core)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File lib/gmap/core.rb, line 70</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">close</span>
15
+ <span class="ruby-ivar">@io</span>.<span class="ruby-identifier">close</span>
16
+ <span class="ruby-keyword kw">end</span></pre>
17
+ </body>
18
+ </html>
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html>
7
+ <head>
8
+ <title>each_sequence (Gmap::Core)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File lib/gmap/core.rb, line 78</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">each_sequence</span>
15
+ <span class="ruby-identifier">start</span> = <span class="ruby-keyword kw">false</span>
16
+ <span class="ruby-identifier">res</span> = <span class="ruby-constant">Gmap</span><span class="ruby-operator">::</span><span class="ruby-constant">Result</span>.<span class="ruby-identifier">new</span>
17
+ <span class="ruby-identifier">all_results</span> = []
18
+ <span class="ruby-identifier">query</span> = <span class="ruby-keyword kw">nil</span>
19
+ <span class="ruby-ivar">@io</span>.<span class="ruby-identifier">each_line</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">l</span><span class="ruby-operator">|</span>
20
+ <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">l</span><span class="ruby-operator">=~</span><span class="ruby-regexp re">/&gt;(\d+|\w+)\s/</span> <span class="ruby-keyword kw">and</span> <span class="ruby-operator">!</span><span class="ruby-identifier">start</span> <span class="ruby-keyword kw">then</span>
21
+ <span class="ruby-identifier">start</span> = <span class="ruby-keyword kw">true</span>
22
+ <span class="ruby-identifier">query</span> = <span class="ruby-node">&quot;#{$1}&quot;</span>
23
+ <span class="ruby-keyword kw">elsif</span> <span class="ruby-identifier">l</span><span class="ruby-operator">=~</span><span class="ruby-regexp re">/&gt;(\d+|\w+)\s/</span> <span class="ruby-keyword kw">and</span> <span class="ruby-identifier">start</span> <span class="ruby-keyword kw">then</span>
24
+ <span class="ruby-identifier">res</span>.<span class="ruby-identifier">query</span> = <span class="ruby-identifier">query</span>
25
+ <span class="ruby-identifier">all_results</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">res</span>.<span class="ruby-identifier">dup</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">res</span>.<span class="ruby-identifier">target</span> <span class="ruby-operator">!=</span> <span class="ruby-keyword kw">nil</span>
26
+ <span class="ruby-identifier">query</span> = <span class="ruby-node">&quot;#{$1}&quot;</span>
27
+ <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">block_given?</span>
28
+ <span class="ruby-keyword kw">yield</span> <span class="ruby-identifier">all_results</span>
29
+ <span class="ruby-keyword kw">else</span>
30
+ <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-value str">&quot;Block needed&quot;</span>
31
+ <span class="ruby-keyword kw">end</span>
32
+ <span class="ruby-identifier">all_results</span>.<span class="ruby-identifier">clear</span>
33
+ <span class="ruby-identifier">res</span>.<span class="ruby-identifier">clear</span>
34
+ <span class="ruby-keyword kw">elsif</span> <span class="ruby-identifier">l</span><span class="ruby-operator">=~</span><span class="ruby-regexp re">/Path\s\d+/</span> <span class="ruby-keyword kw">and</span> <span class="ruby-identifier">res</span>.<span class="ruby-identifier">target</span> <span class="ruby-operator">!=</span> <span class="ruby-keyword kw">nil</span> <span class="ruby-keyword kw">then</span>
35
+ <span class="ruby-identifier">res</span>.<span class="ruby-identifier">query</span> = <span class="ruby-identifier">query</span>
36
+ <span class="ruby-identifier">all_results</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">res</span>.<span class="ruby-identifier">dup</span>
37
+ <span class="ruby-identifier">res</span>.<span class="ruby-identifier">clear</span>
38
+ <span class="ruby-keyword kw">end</span>
39
+ <span class="ruby-identifier">res</span> = <span class="ruby-identifier">parse_line</span>(<span class="ruby-identifier">res</span>,<span class="ruby-identifier">l</span>)
40
+ <span class="ruby-keyword kw">end</span>
41
+ <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">start</span> <span class="ruby-keyword kw">then</span>
42
+ <span class="ruby-identifier">res</span>.<span class="ruby-identifier">query</span> = <span class="ruby-identifier">query</span>
43
+ <span class="ruby-identifier">all_results</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">res</span>.<span class="ruby-identifier">dup</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">res</span>.<span class="ruby-identifier">target</span> <span class="ruby-operator">!=</span> <span class="ruby-keyword kw">nil</span>
44
+ <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">block_given?</span>
45
+ <span class="ruby-keyword kw">yield</span> <span class="ruby-identifier">all_results</span>
46
+ <span class="ruby-keyword kw">else</span>
47
+ <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-value str">&quot;Block needed&quot;</span>
48
+ <span class="ruby-keyword kw">end</span>
49
+ <span class="ruby-keyword kw">end</span>
50
+ <span class="ruby-keyword kw">end</span></pre>
51
+ </body>
52
+ </html>
@@ -0,0 +1,337 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>Class: Gmap::Result</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="classHeader">
50
+ <table class="header-table">
51
+ <tr class="top-aligned-row">
52
+ <td><strong>Class</strong></td>
53
+ <td class="class-name-in-header">Gmap::Result</td>
54
+ </tr>
55
+ <tr class="top-aligned-row">
56
+ <td><strong>In:</strong></td>
57
+ <td>
58
+ <a href="../../files/lib/gmap/core_rb.html">
59
+ lib/gmap/core.rb
60
+ </a>
61
+ <br />
62
+ </td>
63
+ </tr>
64
+
65
+ <tr class="top-aligned-row">
66
+ <td><strong>Parent:</strong></td>
67
+ <td>
68
+ Object
69
+ </td>
70
+ </tr>
71
+ </table>
72
+ </div>
73
+ <!-- banner header -->
74
+
75
+ <div id="bodyContent">
76
+
77
+
78
+
79
+ <div id="contextContent">
80
+
81
+ <div id="description">
82
+ <p>
83
+ This class store the informations of a single <a
84
+ href="../Gmap.html">Gmap</a> result
85
+ </p>
86
+
87
+ </div>
88
+
89
+
90
+ </div>
91
+
92
+ <div id="method-list">
93
+ <h3 class="section-bar">Methods</h3>
94
+
95
+ <div class="name-list">
96
+ <a href="#M000011">clear</a>&nbsp;&nbsp;
97
+ <a href="#M000014">count</a>&nbsp;&nbsp;
98
+ <a href="#M000010">new</a>&nbsp;&nbsp;
99
+ <a href="#M000013">set_save</a>&nbsp;&nbsp;
100
+ <a href="#M000012">set_search</a>&nbsp;&nbsp;
101
+ </div>
102
+ </div>
103
+
104
+ </div>
105
+
106
+
107
+ <!-- if includes -->
108
+
109
+ <div id="section">
110
+
111
+
112
+
113
+
114
+
115
+ <div id="attribute-list">
116
+ <h3 class="section-bar">Attributes</h3>
117
+
118
+ <div class="name-list">
119
+ <table>
120
+ <tr class="top-aligned-row context-row">
121
+ <td class="context-item-name">aa_change</td>
122
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
123
+ <td class="context-item-desc"></td>
124
+ </tr>
125
+ <tr class="top-aligned-row context-row">
126
+ <td class="context-item-name">aln</td>
127
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
128
+ <td class="context-item-desc"></td>
129
+ </tr>
130
+ <tr class="top-aligned-row context-row">
131
+ <td class="context-item-name">c</td>
132
+ <td class="context-item-value">&nbsp;[W]&nbsp;</td>
133
+ <td class="context-item-desc"></td>
134
+ </tr>
135
+ <tr class="top-aligned-row context-row">
136
+ <td class="context-item-name">c</td>
137
+ <td class="context-item-value">&nbsp;[R]&nbsp;</td>
138
+ <td class="context-item-desc"></td>
139
+ </tr>
140
+ <tr class="top-aligned-row context-row">
141
+ <td class="context-item-name">coverage</td>
142
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
143
+ <td class="context-item-desc"></td>
144
+ </tr>
145
+ <tr class="top-aligned-row context-row">
146
+ <td class="context-item-name">end</td>
147
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
148
+ <td class="context-item-desc"></td>
149
+ </tr>
150
+ <tr class="top-aligned-row context-row">
151
+ <td class="context-item-name">exons</td>
152
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
153
+ <td class="context-item-desc"></td>
154
+ </tr>
155
+ <tr class="top-aligned-row context-row">
156
+ <td class="context-item-name">gene_end</td>
157
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
158
+ <td class="context-item-desc"></td>
159
+ </tr>
160
+ <tr class="top-aligned-row context-row">
161
+ <td class="context-item-name">gene_id</td>
162
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
163
+ <td class="context-item-desc"></td>
164
+ </tr>
165
+ <tr class="top-aligned-row context-row">
166
+ <td class="context-item-name">gene_start</td>
167
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
168
+ <td class="context-item-desc"></td>
169
+ </tr>
170
+ <tr class="top-aligned-row context-row">
171
+ <td class="context-item-name">indels</td>
172
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
173
+ <td class="context-item-desc"></td>
174
+ </tr>
175
+ <tr class="top-aligned-row context-row">
176
+ <td class="context-item-name">maps</td>
177
+ <td class="context-item-value">&nbsp;[W]&nbsp;</td>
178
+ <td class="context-item-desc"></td>
179
+ </tr>
180
+ <tr class="top-aligned-row context-row">
181
+ <td class="context-item-name">mismatch</td>
182
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
183
+ <td class="context-item-desc"></td>
184
+ </tr>
185
+ <tr class="top-aligned-row context-row">
186
+ <td class="context-item-name">path</td>
187
+ <td class="context-item-value">&nbsp;[W]&nbsp;</td>
188
+ <td class="context-item-desc"></td>
189
+ </tr>
190
+ <tr class="top-aligned-row context-row">
191
+ <td class="context-item-name">perc_identity</td>
192
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
193
+ <td class="context-item-desc"></td>
194
+ </tr>
195
+ <tr class="top-aligned-row context-row">
196
+ <td class="context-item-name">q_end</td>
197
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
198
+ <td class="context-item-desc"></td>
199
+ </tr>
200
+ <tr class="top-aligned-row context-row">
201
+ <td class="context-item-name">q_start</td>
202
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
203
+ <td class="context-item-desc"></td>
204
+ </tr>
205
+ <tr class="top-aligned-row context-row">
206
+ <td class="context-item-name">query</td>
207
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
208
+ <td class="context-item-desc"></td>
209
+ </tr>
210
+ <tr class="top-aligned-row context-row">
211
+ <td class="context-item-name">save_aln</td>
212
+ <td class="context-item-value">&nbsp;[R]&nbsp;</td>
213
+ <td class="context-item-desc"></td>
214
+ </tr>
215
+ <tr class="top-aligned-row context-row">
216
+ <td class="context-item-name">search_aln</td>
217
+ <td class="context-item-value">&nbsp;[W]&nbsp;</td>
218
+ <td class="context-item-desc"></td>
219
+ </tr>
220
+ <tr class="top-aligned-row context-row">
221
+ <td class="context-item-name">search_aln</td>
222
+ <td class="context-item-value">&nbsp;[R]&nbsp;</td>
223
+ <td class="context-item-desc"></td>
224
+ </tr>
225
+ <tr class="top-aligned-row context-row">
226
+ <td class="context-item-name">start</td>
227
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
228
+ <td class="context-item-desc"></td>
229
+ </tr>
230
+ <tr class="top-aligned-row context-row">
231
+ <td class="context-item-name">strand</td>
232
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
233
+ <td class="context-item-desc"></td>
234
+ </tr>
235
+ <tr class="top-aligned-row context-row">
236
+ <td class="context-item-name">target</td>
237
+ <td class="context-item-value">&nbsp;[RW]&nbsp;</td>
238
+ <td class="context-item-desc"></td>
239
+ </tr>
240
+ </table>
241
+ </div>
242
+ </div>
243
+
244
+
245
+
246
+ <!-- if method_list -->
247
+ <div id="methods">
248
+ <h3 class="section-bar">Public Class methods</h3>
249
+
250
+ <div id="method-M000010" class="method-detail">
251
+ <a name="M000010"></a>
252
+
253
+ <div class="method-heading">
254
+ <a href="Result.src/M000010.html" target="Code" class="method-signature"
255
+ onclick="popupCode('Result.src/M000010.html');return false;">
256
+ <span class="method-name">new</span><span class="method-args">()</span>
257
+ </a>
258
+ </div>
259
+
260
+ <div class="method-description">
261
+ </div>
262
+ </div>
263
+
264
+ <h3 class="section-bar">Public Instance methods</h3>
265
+
266
+ <div id="method-M000011" class="method-detail">
267
+ <a name="M000011"></a>
268
+
269
+ <div class="method-heading">
270
+ <a href="Result.src/M000011.html" target="Code" class="method-signature"
271
+ onclick="popupCode('Result.src/M000011.html');return false;">
272
+ <span class="method-name">clear</span><span class="method-args">()</span>
273
+ </a>
274
+ </div>
275
+
276
+ <div class="method-description">
277
+ <p>
278
+ Initializes all the attributes of the result
279
+ </p>
280
+ </div>
281
+ </div>
282
+
283
+ <div id="method-M000014" class="method-detail">
284
+ <a name="M000014"></a>
285
+
286
+ <div class="method-heading">
287
+ <a href="Result.src/M000014.html" target="Code" class="method-signature"
288
+ onclick="popupCode('Result.src/M000014.html');return false;">
289
+ <span class="method-name">count</span><span class="method-args">()</span>
290
+ </a>
291
+ </div>
292
+
293
+ <div class="method-description">
294
+ </div>
295
+ </div>
296
+
297
+ <div id="method-M000013" class="method-detail">
298
+ <a name="M000013"></a>
299
+
300
+ <div class="method-heading">
301
+ <a href="Result.src/M000013.html" target="Code" class="method-signature"
302
+ onclick="popupCode('Result.src/M000013.html');return false;">
303
+ <span class="method-name">set_save</span><span class="method-args">()</span>
304
+ </a>
305
+ </div>
306
+
307
+ <div class="method-description">
308
+ </div>
309
+ </div>
310
+
311
+ <div id="method-M000012" class="method-detail">
312
+ <a name="M000012"></a>
313
+
314
+ <div class="method-heading">
315
+ <a href="Result.src/M000012.html" target="Code" class="method-signature"
316
+ onclick="popupCode('Result.src/M000012.html');return false;">
317
+ <span class="method-name">set_search</span><span class="method-args">()</span>
318
+ </a>
319
+ </div>
320
+
321
+ <div class="method-description">
322
+ </div>
323
+ </div>
324
+
325
+
326
+ </div>
327
+
328
+
329
+ </div>
330
+
331
+
332
+ <div id="validator-badges">
333
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
334
+ </div>
335
+
336
+ </body>
337
+ </html>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html>
7
+ <head>
8
+ <title>new (Gmap::Result)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File lib/gmap/core.rb, line 205</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>
15
+ <span class="ruby-identifier">clear</span>
16
+ <span class="ruby-keyword kw">end</span></pre>
17
+ </body>
18
+ </html>
@@ -0,0 +1,41 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html>
7
+ <head>
8
+ <title>clear (Gmap::Result)</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
11
+ </head>
12
+ <body class="standalone-code">
13
+ <pre><span class="ruby-comment cmt"># File lib/gmap/core.rb, line 209</span>
14
+ <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">clear</span>
15
+ <span class="ruby-ivar">@query</span> = <span class="ruby-keyword kw">nil</span>
16
+ <span class="ruby-ivar">@target</span> = <span class="ruby-keyword kw">nil</span>
17
+ <span class="ruby-ivar">@start</span> = <span class="ruby-keyword kw">nil</span>
18
+ <span class="ruby-ivar">@end</span> = <span class="ruby-keyword kw">nil</span>
19
+ <span class="ruby-ivar">@strand</span> = <span class="ruby-keyword kw">nil</span>
20
+ <span class="ruby-ivar">@exons</span> = <span class="ruby-keyword kw">nil</span>
21
+ <span class="ruby-ivar">@coverage</span> = <span class="ruby-keyword kw">nil</span>
22
+ <span class="ruby-ivar">@perc_identity</span> = <span class="ruby-keyword kw">nil</span>
23
+ <span class="ruby-ivar">@indels</span> = <span class="ruby-keyword kw">nil</span>
24
+ <span class="ruby-ivar">@mismatch</span> = <span class="ruby-keyword kw">nil</span>
25
+ <span class="ruby-ivar">@aa_change</span> = <span class="ruby-keyword kw">nil</span>
26
+ <span class="ruby-ivar">@gene_start</span> = <span class="ruby-keyword kw">nil</span>
27
+ <span class="ruby-ivar">@gene_end</span> = <span class="ruby-keyword kw">nil</span>
28
+ <span class="ruby-ivar">@gene_id</span> = <span class="ruby-keyword kw">nil</span>
29
+ <span class="ruby-ivar">@q_start</span> = <span class="ruby-keyword kw">nil</span>
30
+ <span class="ruby-ivar">@q_end</span> = <span class="ruby-keyword kw">nil</span>
31
+ <span class="ruby-ivar">@aln</span> = <span class="ruby-value str">&quot;&quot;</span>
32
+
33
+ <span class="ruby-comment cmt"># Inizalize control attributes</span>
34
+
35
+ <span class="ruby-ivar">@maps</span> = <span class="ruby-keyword kw">false</span>
36
+ <span class="ruby-ivar">@search_aln</span> = <span class="ruby-keyword kw">false</span>
37
+ <span class="ruby-ivar">@save_aln</span> = <span class="ruby-keyword kw">false</span>
38
+ <span class="ruby-ivar">@c</span> = <span class="ruby-value">0</span>
39
+ <span class="ruby-keyword kw">end</span></pre>
40
+ </body>
41
+ </html>