1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
package jalview.analysis; |
28 |
|
|
29 |
|
import jalview.analysis.SecStrConsensus.SimpleBP; |
30 |
|
import jalview.datamodel.SequenceFeature; |
31 |
|
import jalview.util.MessageManager; |
32 |
|
|
33 |
|
import java.util.ArrayList; |
34 |
|
import java.util.HashMap; |
35 |
|
import java.util.Hashtable; |
36 |
|
import java.util.List; |
37 |
|
import java.util.Map; |
38 |
|
import java.util.Stack; |
39 |
|
|
|
|
| 97% |
Uncovered Elements: 6 (200) |
Complexity: 68 |
Complexity Density: 0.46 |
|
40 |
|
public class Rna |
41 |
|
{ |
42 |
|
|
43 |
|
|
44 |
|
|
45 |
|
|
46 |
|
|
47 |
|
@param |
48 |
|
@return |
49 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
105966 |
public static boolean isOpeningParenthesis(char c)... |
51 |
|
{ |
52 |
105966 |
return ('A' <= c && c <= 'Z' || c == '(' || c == '[' || c == '{' |
53 |
|
|| c == '<'); |
54 |
|
} |
55 |
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
@param |
61 |
|
@return |
62 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
63 |
1025 |
public static boolean isOpeningParenthesis(String s)... |
64 |
|
{ |
65 |
1025 |
return s != null && s.length() == 1 |
66 |
|
&& isOpeningParenthesis(s.charAt(0)); |
67 |
|
} |
68 |
|
|
69 |
|
|
70 |
|
|
71 |
|
|
72 |
|
|
73 |
|
@param |
74 |
|
@return |
75 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
76 |
79872 |
public static boolean isClosingParenthesis(char c)... |
77 |
|
{ |
78 |
79872 |
return ('a' <= c && c <= 'z' || c == ')' || c == ']' || c == '}' |
79 |
|
|| c == '>'); |
80 |
|
} |
81 |
|
|
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
@param |
87 |
|
@return |
88 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
89 |
996 |
public static boolean isClosingParenthesis(String s)... |
90 |
|
{ |
91 |
996 |
return s != null && s.length() == 1 |
92 |
|
&& isClosingParenthesis(s.charAt(0)); |
93 |
|
} |
94 |
|
|
95 |
|
|
96 |
|
|
97 |
|
|
98 |
|
|
99 |
|
|
100 |
|
@param |
101 |
|
@return |
102 |
|
|
|
|
| 86.7% |
Uncovered Elements: 2 (15) |
Complexity: 7 |
Complexity Density: 0.54 |
|
103 |
18867 |
public static char getMatchingOpeningParenthesis(char c)... |
104 |
|
{ |
105 |
18867 |
if ('a' <= c && c <= 'z') |
106 |
|
{ |
107 |
74 |
return (char) (c + 'A' - 'a'); |
108 |
|
} |
109 |
18793 |
switch (c) |
110 |
|
{ |
111 |
18459 |
case ')': |
112 |
18459 |
return '('; |
113 |
76 |
case ']': |
114 |
76 |
return '['; |
115 |
44 |
case '}': |
116 |
44 |
return '{'; |
117 |
214 |
case '>': |
118 |
214 |
return '<'; |
119 |
0 |
default: |
120 |
0 |
return c; |
121 |
|
} |
122 |
|
} |
123 |
|
|
124 |
|
|
125 |
|
|
126 |
|
|
127 |
|
|
128 |
|
|
129 |
|
|
130 |
|
|
131 |
|
|
132 |
|
|
133 |
|
@param |
134 |
|
|
135 |
|
@return |
136 |
|
@link |
137 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (38) |
Complexity: 8 |
Complexity Density: 0.33 |
|
138 |
1356 |
protected static List<SimpleBP> getSimpleBPs(CharSequence line)... |
139 |
|
throws WUSSParseException |
140 |
|
{ |
141 |
1356 |
Hashtable<Character, Stack<Integer>> stacks = new Hashtable<Character, Stack<Integer>>(); |
142 |
1356 |
List<SimpleBP> pairs = new ArrayList<SimpleBP>(); |
143 |
1356 |
int i = 0; |
144 |
96989 |
while (i < line.length()) |
145 |
|
{ |
146 |
95635 |
char base = line.charAt(i); |
147 |
|
|
148 |
95635 |
if (isOpeningParenthesis(base)) |
149 |
|
{ |
150 |
21322 |
if (!stacks.containsKey(base)) |
151 |
|
{ |
152 |
1454 |
stacks.put(base, new Stack<Integer>()); |
153 |
|
} |
154 |
21322 |
stacks.get(base).push(i); |
155 |
|
|
156 |
|
} |
157 |
74313 |
else if (isClosingParenthesis(base)) |
158 |
|
{ |
159 |
|
|
160 |
18837 |
char opening = getMatchingOpeningParenthesis(base); |
161 |
|
|
162 |
18837 |
if (!stacks.containsKey(opening)) |
163 |
|
{ |
164 |
1 |
throw new WUSSParseException(MessageManager.formatMessage( |
165 |
|
"exception.mismatched_unseen_closing_char", new String[] |
166 |
|
{ String.valueOf(base) }), i); |
167 |
|
} |
168 |
|
|
169 |
18836 |
Stack<Integer> stack = stacks.get(opening); |
170 |
18836 |
if (stack.isEmpty()) |
171 |
|
{ |
172 |
|
|
173 |
1 |
throw new WUSSParseException(MessageManager.formatMessage( |
174 |
|
"exception.mismatched_closing_char", new String[] |
175 |
|
{ String.valueOf(base) }), i); |
176 |
|
} |
177 |
18835 |
int temp = stack.pop(); |
178 |
|
|
179 |
18835 |
pairs.add(new SimpleBP(temp, i)); |
180 |
|
} |
181 |
95633 |
i++; |
182 |
|
} |
183 |
1354 |
for (char opening : stacks.keySet()) |
184 |
|
{ |
185 |
1448 |
Stack<Integer> stack = stacks.get(opening); |
186 |
1448 |
if (!stack.empty()) |
187 |
|
{ |
188 |
|
|
189 |
|
|
190 |
|
|
191 |
|
|
192 |
377 |
throw new WUSSParseException(MessageManager.formatMessage( |
193 |
|
"exception.mismatched_opening_char", new String[] |
194 |
|
{ String.valueOf(opening), String.valueOf(stack.pop()) }), |
195 |
|
i); |
196 |
|
} |
197 |
|
} |
198 |
977 |
return pairs; |
199 |
|
} |
200 |
|
|
201 |
|
|
202 |
|
|
203 |
|
|
204 |
|
@param |
205 |
|
|
206 |
|
@return |
207 |
|
|
208 |
|
|
209 |
|
|
210 |
|
|
211 |
|
|
212 |
|
|
213 |
|
|
214 |
|
|
215 |
|
|
216 |
|
|
217 |
|
|
218 |
|
|
219 |
|
@param |
220 |
|
@return |
221 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
222 |
9115 |
public static boolean isRnaSecondaryStructureSymbol(char c)... |
223 |
|
{ |
224 |
9115 |
return isOpeningParenthesis(c) || isClosingParenthesis(c); |
225 |
|
} |
226 |
|
|
227 |
|
|
228 |
|
|
229 |
|
|
230 |
|
|
231 |
|
@param |
232 |
|
@return |
233 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
234 |
513 |
public static boolean isRnaSecondaryStructureSymbol(String s)... |
235 |
|
{ |
236 |
513 |
return isOpeningParenthesis(s) || isClosingParenthesis(s); |
237 |
|
} |
238 |
|
|
239 |
|
|
240 |
|
|
241 |
|
|
242 |
|
|
243 |
|
|
244 |
|
@param |
245 |
|
@return |
246 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (13) |
Complexity: 4 |
Complexity Density: 0.57 |
|
247 |
8841 |
public static String getRNASecStrucState(String ssString)... |
248 |
|
{ |
249 |
8841 |
if (ssString == null) |
250 |
|
{ |
251 |
1 |
return null; |
252 |
|
} |
253 |
8840 |
StringBuilder result = new StringBuilder(ssString.length()); |
254 |
17699 |
for (int i = 0; i < ssString.length(); i++) |
255 |
|
{ |
256 |
8859 |
char c = ssString.charAt(i); |
257 |
8859 |
result.append(isRnaSecondaryStructureSymbol(c) ? c : " "); |
258 |
|
} |
259 |
8840 |
return result.toString(); |
260 |
|
} |
261 |
|
|
262 |
|
|
263 |
|
|
264 |
|
|
265 |
|
|
266 |
|
@param |
267 |
|
@param |
268 |
|
@return |
269 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (35) |
Complexity: 16 |
Complexity Density: 0.52 |
|
270 |
4484 |
public static boolean isCanonicalOrWobblePair(char first, char second)... |
271 |
|
{ |
272 |
4484 |
if (first > 'Z') |
273 |
|
{ |
274 |
50 |
first -= 32; |
275 |
|
} |
276 |
4484 |
if (second > 'Z') |
277 |
|
{ |
278 |
50 |
second -= 32; |
279 |
|
} |
280 |
|
|
281 |
4484 |
switch (first) |
282 |
|
{ |
283 |
764 |
case 'A': |
284 |
764 |
switch (second) |
285 |
|
{ |
286 |
4 |
case 'T': |
287 |
648 |
case 'U': |
288 |
652 |
return true; |
289 |
|
} |
290 |
112 |
break; |
291 |
1260 |
case 'C': |
292 |
1260 |
switch (second) |
293 |
|
{ |
294 |
1088 |
case 'G': |
295 |
1088 |
return true; |
296 |
|
} |
297 |
172 |
break; |
298 |
20 |
case 'T': |
299 |
1188 |
case 'U': |
300 |
1208 |
switch (second) |
301 |
|
{ |
302 |
792 |
case 'A': |
303 |
256 |
case 'G': |
304 |
1048 |
return true; |
305 |
|
} |
306 |
160 |
break; |
307 |
1252 |
case 'G': |
308 |
1252 |
switch (second) |
309 |
|
{ |
310 |
944 |
case 'C': |
311 |
4 |
case 'T': |
312 |
196 |
case 'U': |
313 |
1144 |
return true; |
314 |
|
} |
315 |
108 |
break; |
316 |
|
} |
317 |
552 |
return false; |
318 |
|
} |
319 |
|
|
320 |
|
|
321 |
|
|
322 |
|
|
323 |
|
|
324 |
|
@param |
325 |
|
@param |
326 |
|
@return |
327 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (32) |
Complexity: 13 |
Complexity Density: 0.46 |
|
328 |
3992 |
public static boolean isCanonicalPair(char first, char second)... |
329 |
|
{ |
330 |
|
|
331 |
3992 |
if (first > 'Z') |
332 |
|
{ |
333 |
50 |
first -= 32; |
334 |
|
} |
335 |
3992 |
if (second > 'Z') |
336 |
|
{ |
337 |
50 |
second -= 32; |
338 |
|
} |
339 |
|
|
340 |
3992 |
switch (first) |
341 |
|
{ |
342 |
664 |
case 'A': |
343 |
664 |
switch (second) |
344 |
|
{ |
345 |
4 |
case 'T': |
346 |
648 |
case 'U': |
347 |
652 |
return true; |
348 |
|
} |
349 |
12 |
break; |
350 |
1152 |
case 'G': |
351 |
1152 |
switch (second) |
352 |
|
{ |
353 |
944 |
case 'C': |
354 |
944 |
return true; |
355 |
|
} |
356 |
208 |
break; |
357 |
1104 |
case 'C': |
358 |
1104 |
switch (second) |
359 |
|
{ |
360 |
1088 |
case 'G': |
361 |
1088 |
return true; |
362 |
|
} |
363 |
16 |
break; |
364 |
20 |
case 'T': |
365 |
1052 |
case 'U': |
366 |
1072 |
switch (second) |
367 |
|
{ |
368 |
792 |
case 'A': |
369 |
792 |
return true; |
370 |
|
} |
371 |
280 |
break; |
372 |
|
} |
373 |
516 |
return false; |
374 |
|
} |
375 |
|
|
376 |
|
|
377 |
|
|
378 |
|
|
379 |
|
|
380 |
|
|
381 |
|
@param |
382 |
|
@return |
383 |
|
|
|
|
| 86.7% |
Uncovered Elements: 2 (15) |
Complexity: 7 |
Complexity Density: 0.54 |
|
384 |
52 |
public static char getMatchingClosingParenthesis(char c)... |
385 |
|
{ |
386 |
52 |
if ('A' <= c && c <= 'Z') |
387 |
|
{ |
388 |
2 |
return (char) (c + 'a' - 'A'); |
389 |
|
} |
390 |
50 |
switch (c) |
391 |
|
{ |
392 |
13 |
case '(': |
393 |
13 |
return ')'; |
394 |
13 |
case '[': |
395 |
13 |
return ']'; |
396 |
11 |
case '{': |
397 |
11 |
return '}'; |
398 |
13 |
case '<': |
399 |
13 |
return '>'; |
400 |
0 |
default: |
401 |
0 |
return c; |
402 |
|
} |
403 |
|
} |
404 |
|
|
|
|
| 93.9% |
Uncovered Elements: 2 (33) |
Complexity: 7 |
Complexity Density: 0.28 |
|
405 |
1352 |
public static SequenceFeature[] getHelixMap(CharSequence rnaAnnotation)... |
406 |
|
throws WUSSParseException |
407 |
|
{ |
408 |
1352 |
List<SequenceFeature> result = new ArrayList<SequenceFeature>(); |
409 |
|
|
410 |
1352 |
int helix = 0; |
411 |
1352 |
int lastopen = 0; |
412 |
1352 |
int lastclose = 9999999; |
413 |
|
|
414 |
1352 |
Map<Integer, Integer> helices = new HashMap<Integer, Integer>(); |
415 |
|
|
416 |
|
|
417 |
|
|
418 |
1352 |
List<SimpleBP> bps = getSimpleBPs(rnaAnnotation); |
419 |
976 |
for (SimpleBP basePair : bps) |
420 |
|
{ |
421 |
18825 |
final int open = basePair.getBP5(); |
422 |
18825 |
final int close = basePair.getBP3(); |
423 |
|
|
424 |
|
|
425 |
|
|
426 |
|
|
427 |
|
|
428 |
|
|
429 |
|
|
430 |
|
|
431 |
|
|
432 |
18825 |
if (open > lastclose) |
433 |
|
{ |
434 |
220 |
helix++; |
435 |
|
} |
436 |
|
|
437 |
|
|
438 |
|
|
439 |
|
|
440 |
18825 |
int j = bps.size(); |
441 |
443447 |
while (--j >= 0) |
442 |
|
{ |
443 |
424714 |
int popen = bps.get(j).getBP5(); |
444 |
|
|
445 |
|
|
446 |
|
|
447 |
|
|
448 |
424714 |
if ((popen < lastopen) && (popen > open)) |
449 |
|
{ |
450 |
92 |
if (helices.containsValue(popen) |
451 |
|
&& ((helices.get(popen)) == helix)) |
452 |
|
{ |
453 |
0 |
continue; |
454 |
|
} |
455 |
|
else |
456 |
|
{ |
457 |
92 |
helix++; |
458 |
92 |
break; |
459 |
|
} |
460 |
|
} |
461 |
|
} |
462 |
|
|
463 |
|
|
464 |
18825 |
helices.put(open, helix); |
465 |
18825 |
helices.put(close, helix); |
466 |
|
|
467 |
|
|
468 |
18825 |
result.add(new SequenceFeature("RNA helix", "", open, close, |
469 |
|
String.valueOf(helix))); |
470 |
|
|
471 |
18825 |
lastopen = open; |
472 |
18825 |
lastclose = close; |
473 |
|
} |
474 |
|
|
475 |
976 |
return result.toArray(new SequenceFeature[result.size()]); |
476 |
|
} |
477 |
|
} |