1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.analysis; |
22 |
|
|
23 |
|
import java.util.Locale; |
24 |
|
|
25 |
|
import jalview.analysis.scoremodels.ScoreMatrix; |
26 |
|
import jalview.analysis.scoremodels.ScoreModels; |
27 |
|
import jalview.api.analysis.ScoreModelI; |
28 |
|
import jalview.datamodel.AlignmentAnnotation; |
29 |
|
import jalview.datamodel.Annotation; |
30 |
|
import jalview.datamodel.ResidueCount; |
31 |
|
import jalview.datamodel.ResidueCount.SymbolCounts; |
32 |
|
import jalview.datamodel.Sequence; |
33 |
|
import jalview.datamodel.SequenceI; |
34 |
|
import jalview.schemes.ResidueProperties; |
35 |
|
import jalview.util.Comparison; |
36 |
|
import jalview.util.Format; |
37 |
|
|
38 |
|
import java.awt.Color; |
39 |
|
import java.util.List; |
40 |
|
import java.util.Map; |
41 |
|
import java.util.Map.Entry; |
42 |
|
import java.util.SortedMap; |
43 |
|
import java.util.TreeMap; |
44 |
|
import java.util.Vector; |
45 |
|
|
46 |
|
|
47 |
|
|
48 |
|
|
|
|
| 95.5% |
Uncovered Elements: 19 (419) |
Complexity: 105 |
Complexity Density: 0.41 |
|
49 |
|
public class Conservation |
50 |
|
{ |
51 |
|
|
52 |
|
|
53 |
|
|
54 |
|
|
55 |
|
private static final int THRESHOLD_PERCENT = 3; |
56 |
|
|
57 |
|
private static final int TOUPPERCASE = 'a' - 'A'; |
58 |
|
|
59 |
|
private static final int GAP_INDEX = -1; |
60 |
|
|
61 |
|
private static final Format FORMAT_3DP = new Format("%2.5f"); |
62 |
|
|
63 |
|
SequenceI[] sequences; |
64 |
|
|
65 |
|
int start; |
66 |
|
|
67 |
|
int end; |
68 |
|
|
69 |
|
|
70 |
|
|
71 |
|
|
72 |
|
|
73 |
|
Vector<int[]> seqNums; |
74 |
|
|
75 |
|
int maxLength = 0; |
76 |
|
|
77 |
|
boolean seqNumsChanged = false; |
78 |
|
|
79 |
|
|
80 |
|
|
81 |
|
|
82 |
|
|
83 |
|
|
84 |
|
Map<String, Integer>[] total; |
85 |
|
|
86 |
|
|
87 |
|
|
88 |
|
|
89 |
|
|
90 |
|
boolean canonicaliseAa = true; |
91 |
|
|
92 |
|
private Vector<Double> quality; |
93 |
|
|
94 |
|
private double qualityMinimum; |
95 |
|
|
96 |
|
private double qualityMaximum; |
97 |
|
|
98 |
|
private Sequence consSequence; |
99 |
|
|
100 |
|
|
101 |
|
|
102 |
|
|
103 |
|
private int threshold; |
104 |
|
|
105 |
|
private String name = ""; |
106 |
|
|
107 |
|
|
108 |
|
|
109 |
|
|
110 |
|
private int[][] cons2; |
111 |
|
|
112 |
|
|
113 |
|
|
114 |
|
|
115 |
|
private int[] cons2GapCounts; |
116 |
|
|
117 |
|
private String[] consSymbs; |
118 |
|
|
119 |
|
|
120 |
|
|
121 |
|
|
122 |
|
@param |
123 |
|
|
124 |
|
@param |
125 |
|
|
126 |
|
@param |
127 |
|
|
128 |
|
@param |
129 |
|
|
130 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
131 |
232 |
public Conservation(String name, List<SequenceI> sequences, int start,... |
132 |
|
int end) |
133 |
|
{ |
134 |
232 |
this(name, THRESHOLD_PERCENT, sequences, start, end); |
135 |
|
} |
136 |
|
|
137 |
|
|
138 |
|
|
139 |
|
|
140 |
|
@param |
141 |
|
|
142 |
|
@param |
143 |
|
|
144 |
|
|
145 |
|
@param |
146 |
|
|
147 |
|
@param |
148 |
|
|
149 |
|
@param |
150 |
|
|
151 |
|
|
|
|
| 89.5% |
Uncovered Elements: 2 (19) |
Complexity: 4 |
Complexity Density: 0.27 |
|
152 |
235 |
public Conservation(String name, int threshold, List<SequenceI> sequences,... |
153 |
|
int start, int end) |
154 |
|
{ |
155 |
235 |
this.name = name; |
156 |
235 |
this.threshold = threshold; |
157 |
235 |
this.start = start; |
158 |
235 |
this.end = end; |
159 |
|
|
160 |
235 |
maxLength = end - start + 1; |
161 |
|
|
162 |
|
|
163 |
235 |
int s, sSize = sequences.size(); |
164 |
235 |
SequenceI[] sarray = new SequenceI[sSize]; |
165 |
235 |
this.sequences = sarray; |
166 |
235 |
try |
167 |
|
{ |
168 |
1705 |
for (s = 0; s < sSize; s++) |
169 |
|
{ |
170 |
1470 |
sarray[s] = sequences.get(s); |
171 |
1470 |
if (sarray[s].getLength() > maxLength) |
172 |
|
{ |
173 |
4 |
maxLength = sarray[s].getLength(); |
174 |
|
} |
175 |
|
} |
176 |
|
} catch (ArrayIndexOutOfBoundsException ex) |
177 |
|
{ |
178 |
|
|
179 |
|
|
180 |
0 |
this.sequences = new SequenceI[0]; |
181 |
0 |
maxLength = 0; |
182 |
|
} |
183 |
|
} |
184 |
|
|
185 |
|
|
186 |
|
|
187 |
|
|
188 |
|
|
189 |
|
@param |
190 |
|
@param |
191 |
|
|
|
|
| 81.6% |
Uncovered Elements: 7 (38) |
Complexity: 9 |
Complexity Density: 0.38 |
|
192 |
1414 |
private void calcSeqNum(int i, ScoreMatrix sm)... |
193 |
|
{ |
194 |
1414 |
int sSize = sequences.length; |
195 |
|
|
196 |
1414 |
if ((i > -1) && (i < sSize)) |
197 |
|
{ |
198 |
1414 |
String sq = sequences[i].getSequenceAsString(); |
199 |
|
|
200 |
1414 |
if (seqNums.size() <= i) |
201 |
|
{ |
202 |
1414 |
seqNums.addElement(new int[sq.length() + 1]); |
203 |
|
} |
204 |
|
|
205 |
|
|
206 |
|
|
207 |
|
|
208 |
|
|
209 |
1414 |
if (sq.hashCode() != seqNums.elementAt(i)[0]) |
210 |
|
{ |
211 |
1414 |
int j; |
212 |
1414 |
int len; |
213 |
1414 |
seqNumsChanged = true; |
214 |
1414 |
len = sq.length(); |
215 |
|
|
216 |
1414 |
if (maxLength < len) |
217 |
|
{ |
218 |
0 |
maxLength = len; |
219 |
|
} |
220 |
|
|
221 |
1414 |
int[] sqnum = new int[len + 1]; |
222 |
|
|
223 |
1414 |
sqnum[0] = sq.hashCode(); |
224 |
|
|
225 |
188189 |
for (j = 1; j <= len; j++) |
226 |
|
{ |
227 |
|
|
228 |
186775 |
char residue = sq.charAt(j - 1); |
229 |
186775 |
if (Comparison.isGap(residue)) |
230 |
|
{ |
231 |
23736 |
sqnum[j] = GAP_INDEX; |
232 |
|
} |
233 |
|
else |
234 |
|
{ |
235 |
163039 |
sqnum[j] = sm.getMatrixIndex(residue); |
236 |
163039 |
if (sqnum[j] == -1) |
237 |
|
{ |
238 |
29 |
sqnum[j] = GAP_INDEX; |
239 |
|
} |
240 |
|
} |
241 |
|
} |
242 |
|
|
243 |
1414 |
seqNums.setElementAt(sqnum, i); |
244 |
|
} |
245 |
|
else |
246 |
|
{ |
247 |
0 |
jalview.bin.Console.outPrintln("SEQUENCE HAS BEEN DELETED!!!"); |
248 |
|
} |
249 |
|
} |
250 |
|
else |
251 |
|
{ |
252 |
|
|
253 |
0 |
jalview.bin.Console.errPrintln( |
254 |
|
"ERROR: calcSeqNum called with out of range sequence index for Alignment\n"); |
255 |
|
} |
256 |
|
} |
257 |
|
|
258 |
|
|
259 |
|
|
260 |
|
|
|
|
| 96.3% |
Uncovered Elements: 1 (27) |
Complexity: 6 |
Complexity Density: 0.35 |
|
261 |
232 |
public void calculate()... |
262 |
|
{ |
263 |
232 |
int height = sequences.length; |
264 |
|
|
265 |
232 |
total = new Map[maxLength]; |
266 |
|
|
267 |
18116 |
for (int column = start; column <= end; column++) |
268 |
|
{ |
269 |
17884 |
ResidueCount values = countResidues(column); |
270 |
|
|
271 |
|
|
272 |
|
|
273 |
|
|
274 |
17884 |
int thresh = (threshold * height) / 100; |
275 |
|
|
276 |
|
|
277 |
|
|
278 |
|
|
279 |
|
|
280 |
|
|
281 |
|
|
282 |
17884 |
SortedMap<String, Integer> resultHash = new TreeMap<>(); |
283 |
17884 |
SymbolCounts symbolCounts = values.getSymbolCounts(); |
284 |
17884 |
char[] symbols = symbolCounts.symbols; |
285 |
17884 |
int[] counts = symbolCounts.values; |
286 |
55143 |
for (int j = 0; j < symbols.length; j++) |
287 |
|
{ |
288 |
37260 |
char c = symbols[j]; |
289 |
37260 |
if (counts[j] > thresh) |
290 |
|
{ |
291 |
37255 |
recordConservation(resultHash, String.valueOf(c)); |
292 |
|
} |
293 |
|
} |
294 |
17884 |
if (values.getGapCount() > thresh) |
295 |
|
{ |
296 |
9187 |
recordConservation(resultHash, "-"); |
297 |
|
} |
298 |
|
|
299 |
17884 |
if (total.length > 0) |
300 |
|
{ |
301 |
17884 |
total[column - start] = resultHash; |
302 |
|
} |
303 |
|
} |
304 |
|
} |
305 |
|
|
306 |
|
|
307 |
|
|
308 |
|
|
309 |
|
@param |
310 |
|
|
311 |
|
|
312 |
|
|
313 |
|
@param |
314 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (17) |
Complexity: 5 |
Complexity Density: 0.45 |
|
315 |
46445 |
protected static void recordConservation(Map<String, Integer> resultMap,... |
316 |
|
String res) |
317 |
|
{ |
318 |
46445 |
res = res.toUpperCase(Locale.ROOT); |
319 |
46445 |
for (Entry<String, Map<String, Integer>> property : ResidueProperties.propHash |
320 |
|
.entrySet()) |
321 |
|
{ |
322 |
464349 |
String propertyName = property.getKey(); |
323 |
464394 |
Integer residuePropertyValue = property.getValue().get(res); |
324 |
|
|
325 |
464475 |
if (!resultMap.containsKey(propertyName)) |
326 |
|
{ |
327 |
|
|
328 |
|
|
329 |
|
|
330 |
178826 |
if (residuePropertyValue != null) |
331 |
|
{ |
332 |
178735 |
resultMap.put(propertyName, residuePropertyValue); |
333 |
|
} |
334 |
|
else |
335 |
|
{ |
336 |
|
|
337 |
|
|
338 |
|
|
339 |
90 |
resultMap.put(propertyName, property.getValue().get("-")); |
340 |
|
} |
341 |
|
} |
342 |
|
else |
343 |
|
{ |
344 |
285632 |
Integer currentResult = resultMap.get(propertyName); |
345 |
285638 |
if (currentResult.intValue() != -1 |
346 |
|
&& !currentResult.equals(residuePropertyValue)) |
347 |
|
{ |
348 |
|
|
349 |
|
|
350 |
|
|
351 |
89136 |
resultMap.put(propertyName, Integer.valueOf(-1)); |
352 |
|
} |
353 |
|
} |
354 |
|
} |
355 |
|
} |
356 |
|
|
357 |
|
|
358 |
|
|
359 |
|
|
360 |
|
@param |
361 |
|
@return |
362 |
|
|
|
|
| 91.3% |
Uncovered Elements: 2 (23) |
Complexity: 6 |
Complexity Density: 0.46 |
|
363 |
17883 |
protected ResidueCount countResidues(int column)... |
364 |
|
{ |
365 |
17883 |
ResidueCount values = new ResidueCount(false); |
366 |
|
|
367 |
212774 |
for (int row = 0; row < sequences.length; row++) |
368 |
|
{ |
369 |
194889 |
if (sequences[row].getLength() > column) |
370 |
|
{ |
371 |
191775 |
char c = sequences[row].getCharAt(column); |
372 |
191770 |
if (canonicaliseAa) |
373 |
|
{ |
374 |
191768 |
int index = ResidueProperties.aaIndex[c]; |
375 |
191776 |
c = index > 20 ? '-' : ResidueProperties.aa[index].charAt(0); |
376 |
|
} |
377 |
|
else |
378 |
|
{ |
379 |
0 |
c = toUpperCase(c); |
380 |
|
} |
381 |
191765 |
if (Comparison.isGap(c)) |
382 |
|
{ |
383 |
24568 |
values.addGap(); |
384 |
|
} |
385 |
|
else |
386 |
|
{ |
387 |
167199 |
values.add(c); |
388 |
|
} |
389 |
|
} |
390 |
|
else |
391 |
|
{ |
392 |
3115 |
values.addGap(); |
393 |
|
} |
394 |
|
} |
395 |
17884 |
return values; |
396 |
|
} |
397 |
|
|
398 |
|
|
399 |
|
|
400 |
|
|
401 |
|
@return |
402 |
|
|
|
|
| 94.1% |
Uncovered Elements: 2 (34) |
Complexity: 8 |
Complexity Density: 0.4 |
|
403 |
17877 |
public int[] countConservationAndGaps(int column)... |
404 |
|
{ |
405 |
17877 |
int gapCount = 0; |
406 |
17877 |
boolean fullyConserved = true; |
407 |
17877 |
int iSize = sequences.length; |
408 |
|
|
409 |
17877 |
if (iSize == 0) |
410 |
|
{ |
411 |
0 |
return new int[] { 0, 0 }; |
412 |
|
} |
413 |
|
|
414 |
17877 |
char lastRes = '0'; |
415 |
212754 |
for (int i = 0; i < iSize; i++) |
416 |
|
{ |
417 |
194877 |
if (column >= sequences[i].getLength()) |
418 |
|
{ |
419 |
3115 |
gapCount++; |
420 |
3115 |
continue; |
421 |
|
} |
422 |
|
|
423 |
191762 |
char c = sequences[i].getCharAt(column); |
424 |
|
|
425 |
|
|
426 |
191762 |
if (Comparison.isGap((c))) |
427 |
|
{ |
428 |
24526 |
gapCount++; |
429 |
|
} |
430 |
|
else |
431 |
|
{ |
432 |
167236 |
c = toUpperCase(c); |
433 |
167236 |
if (lastRes == '0') |
434 |
|
{ |
435 |
17720 |
lastRes = c; |
436 |
|
} |
437 |
167236 |
if (c != lastRes) |
438 |
|
{ |
439 |
48858 |
fullyConserved = false; |
440 |
|
} |
441 |
|
} |
442 |
|
} |
443 |
|
|
444 |
17877 |
int[] r = new int[] { fullyConserved ? 1 : 0, gapCount }; |
445 |
17877 |
return r; |
446 |
|
} |
447 |
|
|
448 |
|
|
449 |
|
|
450 |
|
|
451 |
|
|
452 |
|
@param |
453 |
|
@return |
454 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 3 |
Complexity Density: 1 |
|
455 |
167236 |
char toUpperCase(char c)... |
456 |
|
{ |
457 |
167236 |
if ('a' <= c && c <= 'z') |
458 |
|
{ |
459 |
387 |
c -= TOUPPERCASE; |
460 |
|
} |
461 |
167236 |
return c; |
462 |
|
} |
463 |
|
|
464 |
|
|
465 |
|
|
466 |
|
|
467 |
|
@param |
468 |
|
|
469 |
|
|
470 |
|
@param |
471 |
|
|
472 |
|
|
473 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (55) |
Complexity: 13 |
Complexity Density: 0.39 |
|
474 |
230 |
public void verdict(boolean positiveOnly, float maxPercentageGaps)... |
475 |
|
{ |
476 |
|
|
477 |
|
|
478 |
230 |
StringBuilder consString = new StringBuilder(end); |
479 |
|
|
480 |
|
|
481 |
|
|
482 |
|
|
483 |
290 |
for (int i = 0; i < start; i++) |
484 |
|
{ |
485 |
60 |
consString.append('-'); |
486 |
|
} |
487 |
230 |
consSymbs = new String[end - start + 1]; |
488 |
18103 |
for (int i = start; i <= end; i++) |
489 |
|
{ |
490 |
17873 |
int[] gapcons = countConservationAndGaps(i); |
491 |
17873 |
boolean fullyConserved = gapcons[0] == 1; |
492 |
17873 |
int totGaps = gapcons[1]; |
493 |
17873 |
float pgaps = (totGaps * 100f) / sequences.length; |
494 |
|
|
495 |
17873 |
if (maxPercentageGaps > pgaps) |
496 |
|
{ |
497 |
13339 |
Map<String, Integer> resultHash = total[i - start]; |
498 |
13339 |
int count = 0; |
499 |
13339 |
StringBuilder positives = new StringBuilder(64); |
500 |
13339 |
StringBuilder negatives = new StringBuilder(32); |
501 |
13339 |
for (String type : resultHash.keySet()) |
502 |
|
{ |
503 |
133390 |
int result = resultHash.get(type).intValue(); |
504 |
133390 |
if (result == -1) |
505 |
|
{ |
506 |
|
|
507 |
|
|
508 |
|
|
509 |
53777 |
continue; |
510 |
|
} |
511 |
79613 |
count++; |
512 |
79613 |
if (result == 1) |
513 |
|
{ |
514 |
|
|
515 |
|
|
516 |
|
|
517 |
23933 |
positives.append(positives.length() == 0 ? "" : " "); |
518 |
23933 |
positives.append(type); |
519 |
|
} |
520 |
79613 |
if (result == 0 && !positiveOnly) |
521 |
|
{ |
522 |
|
|
523 |
|
|
524 |
|
|
525 |
55680 |
negatives.append(negatives.length() == 0 ? "" : " "); |
526 |
55680 |
negatives.append("!").append(type); |
527 |
|
} |
528 |
|
} |
529 |
13339 |
if (negatives.length() > 0) |
530 |
|
{ |
531 |
8672 |
positives.append(" ").append(negatives); |
532 |
|
} |
533 |
13339 |
consSymbs[i - start] = positives.toString(); |
534 |
|
|
535 |
13339 |
if (count < 10) |
536 |
|
{ |
537 |
8295 |
consString.append(count); |
538 |
|
} |
539 |
|
else |
540 |
|
{ |
541 |
5044 |
consString.append(fullyConserved ? "*" : "+"); |
542 |
|
} |
543 |
|
} |
544 |
|
else |
545 |
|
{ |
546 |
4534 |
consString.append('-'); |
547 |
|
} |
548 |
|
} |
549 |
|
|
550 |
230 |
consSequence = new Sequence(name, consString.toString(), start, end); |
551 |
|
} |
552 |
|
|
553 |
|
|
554 |
|
|
555 |
|
|
556 |
|
@return |
557 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
558 |
249 |
public SequenceI getConsSequence()... |
559 |
|
{ |
560 |
249 |
return consSequence; |
561 |
|
} |
562 |
|
|
563 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
564 |
222 |
public void findQuality()... |
565 |
|
{ |
566 |
222 |
findQuality(0, maxLength - 1, getQualitySubstMat()); |
567 |
|
} |
568 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
569 |
222 |
public ScoreMatrix getQualitySubstMat()... |
570 |
|
{ |
571 |
222 |
return sm; |
572 |
|
} |
573 |
|
|
574 |
|
|
575 |
|
|
576 |
|
|
577 |
|
private ScoreMatrix sm = ScoreModels.getInstance().getBlosum62(); |
578 |
|
|
579 |
|
|
580 |
|
|
581 |
|
|
582 |
|
@param |
583 |
|
|
584 |
|
|
585 |
|
|
|
|
| 75% |
Uncovered Elements: 1 (4) |
Complexity: 3 |
Complexity Density: 1.5 |
|
586 |
222 |
public void setQualitySubstMat(ScoreMatrix scoreMatrix)... |
587 |
|
{ |
588 |
222 |
if (scoreMatrix != null && scoreMatrix.isProtein()) |
589 |
|
{ |
590 |
222 |
sm = scoreMatrix; |
591 |
|
} |
592 |
|
} |
593 |
|
|
594 |
|
|
595 |
|
|
596 |
|
|
597 |
|
@param |
598 |
|
|
|
|
| 96.7% |
Uncovered Elements: 1 (30) |
Complexity: 8 |
Complexity Density: 0.44 |
|
599 |
222 |
private void percentIdentity(ScoreMatrix sm)... |
600 |
|
{ |
601 |
222 |
seqNums = new Vector<>(); |
602 |
222 |
int i = 0, iSize = sequences.length; |
603 |
|
|
604 |
1636 |
for (i = 0; i < iSize; i++) |
605 |
|
{ |
606 |
1414 |
calcSeqNum(i, sm); |
607 |
|
} |
608 |
|
|
609 |
222 |
if ((cons2 == null) || seqNumsChanged) |
610 |
|
{ |
611 |
|
|
612 |
|
|
613 |
222 |
cons2 = new int[maxLength][24]; |
614 |
222 |
cons2GapCounts = new int[maxLength]; |
615 |
|
|
616 |
222 |
int j = 0; |
617 |
|
|
618 |
1636 |
while (j < sequences.length) |
619 |
|
{ |
620 |
1414 |
int[] sqnum = seqNums.elementAt(j); |
621 |
|
|
622 |
188189 |
for (i = 1; i < sqnum.length; i++) |
623 |
|
{ |
624 |
186775 |
int index = sqnum[i]; |
625 |
186775 |
if (index == GAP_INDEX) |
626 |
|
{ |
627 |
23765 |
cons2GapCounts[i - 1]++; |
628 |
|
} |
629 |
|
else |
630 |
|
{ |
631 |
163010 |
cons2[i - 1][index]++; |
632 |
|
} |
633 |
|
} |
634 |
|
|
635 |
|
|
636 |
4499 |
for (i = sqnum.length - 1; i < maxLength; i++) |
637 |
|
{ |
638 |
3085 |
cons2GapCounts[i]++; |
639 |
|
} |
640 |
1414 |
j++; |
641 |
|
} |
642 |
|
} |
643 |
|
} |
644 |
|
|
645 |
|
|
646 |
|
|
647 |
|
|
648 |
|
|
649 |
|
@param |
650 |
|
@param |
651 |
|
@param |
652 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (61) |
Complexity: 11 |
Complexity Density: 0.27 |
|
653 |
222 |
protected void findQuality(int startCol, int endCol,... |
654 |
|
ScoreMatrix scoreMatrix) |
655 |
|
{ |
656 |
222 |
quality = new Vector<>(); |
657 |
|
|
658 |
222 |
double max = -Double.MAX_VALUE; |
659 |
222 |
float[][] scores = scoreMatrix.getMatrix(); |
660 |
|
|
661 |
222 |
percentIdentity(scoreMatrix); |
662 |
|
|
663 |
222 |
int size = seqNums.size(); |
664 |
222 |
int[] lengths = new int[size]; |
665 |
|
|
666 |
1636 |
for (int l = 0; l < size; l++) |
667 |
|
{ |
668 |
1414 |
lengths[l] = seqNums.elementAt(l).length - 1; |
669 |
|
} |
670 |
|
|
671 |
222 |
final int symbolCount = scoreMatrix.getSize(); |
672 |
|
|
673 |
17567 |
for (int j = startCol; j <= endCol; j++) |
674 |
|
{ |
675 |
17345 |
double bigtot = 0; |
676 |
|
|
677 |
|
|
678 |
17345 |
double[] x = new double[symbolCount]; |
679 |
|
|
680 |
433539 |
for (int ii = 0; ii < symbolCount; ii++) |
681 |
|
{ |
682 |
416195 |
x[ii] = 0; |
683 |
|
|
684 |
|
|
685 |
|
|
686 |
|
|
687 |
|
|
688 |
|
|
689 |
9964942 |
for (int i2 = 0; i2 < symbolCount - 1; i2++) |
690 |
|
{ |
691 |
9549195 |
x[ii] += (((double) cons2[j][i2] * scores[ii][i2]) + 4D); |
692 |
|
} |
693 |
416214 |
x[ii] += 4D + cons2GapCounts[j] * scoreMatrix.getMinimumScore(); |
694 |
|
|
695 |
416214 |
x[ii] /= size; |
696 |
|
} |
697 |
|
|
698 |
|
|
699 |
207146 |
for (int k = 0; k < size; k++) |
700 |
|
{ |
701 |
189794 |
double tot = 0; |
702 |
189814 |
double[] xx = new double[symbolCount]; |
703 |
|
|
704 |
189817 |
int seqNum = (j < lengths[k]) ? seqNums.elementAt(k)[j + 1] |
705 |
|
: GAP_INDEX; |
706 |
|
|
707 |
4530885 |
for (int i = 0; i < symbolCount - 1; i++) |
708 |
|
{ |
709 |
4347075 |
double sr = 4D; |
710 |
4348169 |
if (seqNum == GAP_INDEX) |
711 |
|
{ |
712 |
617359 |
sr += scoreMatrix.getMinimumScore(); |
713 |
|
} |
714 |
|
else |
715 |
|
{ |
716 |
3735948 |
sr += scores[i][seqNum]; |
717 |
|
} |
718 |
|
|
719 |
4356654 |
xx[i] = x[i] - sr; |
720 |
|
|
721 |
4356362 |
tot += (xx[i] * xx[i]); |
722 |
|
} |
723 |
|
|
724 |
189804 |
bigtot += Math.sqrt(tot); |
725 |
|
} |
726 |
|
|
727 |
17345 |
max = Math.max(max, bigtot); |
728 |
|
|
729 |
17345 |
quality.addElement(Double.valueOf(bigtot)); |
730 |
|
} |
731 |
|
|
732 |
222 |
double newmax = -Double.MAX_VALUE; |
733 |
|
|
734 |
17567 |
for (int j = startCol; j <= endCol; j++) |
735 |
|
{ |
736 |
17345 |
double tmp = quality.elementAt(j).doubleValue(); |
737 |
|
|
738 |
17345 |
tmp = ((max - tmp) * (size - cons2GapCounts[j])) / size; |
739 |
|
|
740 |
|
|
741 |
17345 |
quality.setElementAt(Double.valueOf(tmp), j); |
742 |
|
|
743 |
17345 |
if (tmp > newmax) |
744 |
|
{ |
745 |
408 |
newmax = tmp; |
746 |
|
} |
747 |
|
} |
748 |
|
|
749 |
222 |
qualityMinimum = 0D; |
750 |
222 |
qualityMaximum = newmax; |
751 |
|
} |
752 |
|
|
753 |
|
|
754 |
|
|
755 |
|
|
756 |
|
|
757 |
|
|
758 |
|
@param |
759 |
|
|
760 |
|
@param |
761 |
|
|
762 |
|
@param |
763 |
|
|
764 |
|
@param |
765 |
|
|
766 |
|
|
|
|
| 96.7% |
Uncovered Elements: 2 (60) |
Complexity: 16 |
Complexity Density: 0.4 |
|
767 |
222 |
public void completeAnnotations(AlignmentAnnotation conservation,... |
768 |
|
AlignmentAnnotation quality2, int istart, int alWidth) |
769 |
|
{ |
770 |
222 |
SequenceI cons = getConsSequence(); |
771 |
|
|
772 |
|
|
773 |
|
|
774 |
|
|
775 |
222 |
float minR = 0.3f; |
776 |
222 |
float minG = 0.0f; |
777 |
222 |
float minB = 0f; |
778 |
222 |
float maxR = 1.0f - minR; |
779 |
222 |
float maxG = 0.9f - minG; |
780 |
222 |
float maxB = 0f - minB; |
781 |
|
|
782 |
222 |
float min = 0f; |
783 |
222 |
float max = 11f; |
784 |
222 |
float qmin = 0f; |
785 |
222 |
float qmax = 0f; |
786 |
|
|
787 |
222 |
if (conservation != null && conservation.annotations != null |
788 |
|
&& conservation.annotations.length != alWidth) |
789 |
|
{ |
790 |
156 |
conservation.annotations = new Annotation[alWidth]; |
791 |
|
} |
792 |
|
|
793 |
222 |
if (quality2 != null) |
794 |
|
{ |
795 |
222 |
quality2.graphMax = (float) qualityMaximum; |
796 |
222 |
if (quality2.annotations != null |
797 |
|
&& quality2.annotations.length != alWidth) |
798 |
|
{ |
799 |
157 |
quality2.annotations = new Annotation[alWidth]; |
800 |
|
} |
801 |
222 |
qmin = (float) qualityMinimum; |
802 |
222 |
qmax = (float) qualityMaximum; |
803 |
|
} |
804 |
|
|
805 |
17567 |
for (int i = istart; i < alWidth; i++) |
806 |
|
{ |
807 |
17345 |
float value = 0; |
808 |
|
|
809 |
17345 |
char c = cons.getCharAt(i); |
810 |
|
|
811 |
17345 |
if (Character.isDigit(c)) |
812 |
|
{ |
813 |
8101 |
value = c - '0'; |
814 |
|
} |
815 |
9244 |
else if (c == '*') |
816 |
|
{ |
817 |
4830 |
value = 11; |
818 |
|
} |
819 |
4414 |
else if (c == '+') |
820 |
|
{ |
821 |
46 |
value = 10; |
822 |
|
} |
823 |
|
|
824 |
17345 |
if (conservation != null) |
825 |
|
{ |
826 |
17188 |
float vprop = value - min; |
827 |
17188 |
vprop /= max; |
828 |
17188 |
int consp = i - start; |
829 |
17188 |
String conssym = (value > 0 && consp > -1 |
830 |
|
&& consp < consSymbs.length) ? consSymbs[consp] : ""; |
831 |
17188 |
conservation.annotations[i] = new Annotation(String.valueOf(c), |
832 |
|
conssym, ' ', value, new Color(minR + (maxR * vprop), |
833 |
|
minG + (maxG * vprop), minB + (maxB * vprop))); |
834 |
|
} |
835 |
|
|
836 |
|
|
837 |
17345 |
if (quality2 != null) |
838 |
|
{ |
839 |
17345 |
value = quality.elementAt(i).floatValue(); |
840 |
17345 |
float vprop = value - qmin; |
841 |
17345 |
vprop /= qmax; |
842 |
17345 |
String description = FORMAT_3DP.form(value); |
843 |
17345 |
quality2.annotations[i] = new Annotation(" ", description, ' ', |
844 |
|
value, new Color(minR + (maxR * vprop), |
845 |
|
minG + (maxG * vprop), minB + (maxB * vprop))); |
846 |
|
} |
847 |
|
} |
848 |
|
} |
849 |
|
|
850 |
|
|
851 |
|
|
852 |
|
|
853 |
|
@param |
854 |
|
|
855 |
|
@param |
856 |
|
@param |
857 |
|
|
858 |
|
@param |
859 |
|
|
860 |
|
@param |
861 |
|
|
862 |
|
|
863 |
|
@param |
864 |
|
|
865 |
|
@param |
866 |
|
|
867 |
|
@return |
868 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
869 |
2 |
public static Conservation calculateConservation(String name,... |
870 |
|
List<SequenceI> seqs, int start, int end, boolean positiveOnly, |
871 |
|
int maxPercentGaps, boolean calcQuality) |
872 |
|
{ |
873 |
2 |
return calculateConservation(name, seqs, start, end, positiveOnly, |
874 |
|
maxPercentGaps, calcQuality, null); |
875 |
|
} |
876 |
|
|
877 |
|
|
878 |
|
|
879 |
|
|
880 |
|
@param |
881 |
|
|
882 |
|
@param |
883 |
|
@param |
884 |
|
|
885 |
|
@param |
886 |
|
|
887 |
|
@param |
888 |
|
|
889 |
|
|
890 |
|
@param |
891 |
|
|
892 |
|
@param |
893 |
|
|
894 |
|
@param |
895 |
|
|
896 |
|
@return |
897 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (12) |
Complexity: 3 |
Complexity Density: 0.38 |
|
898 |
224 |
public static Conservation calculateConservation(String name,... |
899 |
|
List<SequenceI> seqs, int start, int end, boolean positiveOnly, |
900 |
|
int maxPercentGaps, boolean calcQuality, ScoreMatrix scoreMatrix) |
901 |
|
{ |
902 |
224 |
Conservation cons = new Conservation(name, seqs, start, end); |
903 |
224 |
if (scoreMatrix != null) |
904 |
|
{ |
905 |
222 |
cons.setQualitySubstMat(scoreMatrix); |
906 |
|
} |
907 |
224 |
cons.calculate(); |
908 |
224 |
cons.verdict(positiveOnly, maxPercentGaps); |
909 |
|
|
910 |
224 |
if (calcQuality) |
911 |
|
{ |
912 |
222 |
cons.findQuality(); |
913 |
|
} |
914 |
|
|
915 |
224 |
return cons; |
916 |
|
} |
917 |
|
|
918 |
|
|
919 |
|
|
920 |
|
|
921 |
|
|
922 |
|
|
923 |
|
|
924 |
|
@param |
925 |
|
@return |
926 |
|
|
|
|
| 90% |
Uncovered Elements: 1 (10) |
Complexity: 5 |
Complexity Density: 0.83 |
|
927 |
7 |
String getTooltip(int column)... |
928 |
|
{ |
929 |
7 |
SequenceI cons = getConsSequence(); |
930 |
7 |
char val = column < cons.getLength() ? cons.getCharAt(column) : '-'; |
931 |
7 |
boolean hasConservation = val != '-' && val != '0'; |
932 |
7 |
int consp = column - start; |
933 |
7 |
String tip = (hasConservation && consp > -1 && consp < consSymbs.length) |
934 |
|
? consSymbs[consp] |
935 |
|
: ""; |
936 |
7 |
return tip; |
937 |
|
} |
938 |
|
} |