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.datamodel.AlignmentAnnotation; |
28 |
|
import jalview.datamodel.Annotation; |
29 |
|
import jalview.datamodel.ResidueCount; |
30 |
|
import jalview.datamodel.ResidueCount.SymbolCounts; |
31 |
|
import jalview.datamodel.Sequence; |
32 |
|
import jalview.datamodel.SequenceI; |
33 |
|
import jalview.schemes.ResidueProperties; |
34 |
|
import jalview.util.Comparison; |
35 |
|
import jalview.util.Format; |
36 |
|
|
37 |
|
import java.awt.Color; |
38 |
|
import java.util.List; |
39 |
|
import java.util.Map; |
40 |
|
import java.util.Map.Entry; |
41 |
|
import java.util.SortedMap; |
42 |
|
import java.util.TreeMap; |
43 |
|
import java.util.Vector; |
44 |
|
|
45 |
|
|
46 |
|
|
47 |
|
|
|
|
| 95.6% |
Uncovered Elements: 18 (406) |
Complexity: 99 |
Complexity Density: 0.4 |
|
48 |
|
public class Conservation |
49 |
|
{ |
50 |
|
|
51 |
|
|
52 |
|
|
53 |
|
|
54 |
|
private static final int THRESHOLD_PERCENT = 3; |
55 |
|
|
56 |
|
private static final int TOUPPERCASE = 'a' - 'A'; |
57 |
|
|
58 |
|
private static final int GAP_INDEX = -1; |
59 |
|
|
60 |
|
private static final Format FORMAT_3DP = new Format("%2.5f"); |
61 |
|
|
62 |
|
SequenceI[] sequences; |
63 |
|
|
64 |
|
int start; |
65 |
|
|
66 |
|
int end; |
67 |
|
|
68 |
|
|
69 |
|
|
70 |
|
|
71 |
|
|
72 |
|
Vector<int[]> seqNums; |
73 |
|
|
74 |
|
int maxLength = 0; |
75 |
|
|
76 |
|
boolean seqNumsChanged = false; |
77 |
|
|
78 |
|
|
79 |
|
|
80 |
|
|
81 |
|
|
82 |
|
|
83 |
|
Map<String, Integer>[] total; |
84 |
|
|
85 |
|
|
86 |
|
|
87 |
|
|
88 |
|
|
89 |
|
boolean canonicaliseAa = true; |
90 |
|
|
91 |
|
private Vector<Double> quality; |
92 |
|
|
93 |
|
private double qualityMinimum; |
94 |
|
|
95 |
|
private double qualityMaximum; |
96 |
|
|
97 |
|
private Sequence consSequence; |
98 |
|
|
99 |
|
|
100 |
|
|
101 |
|
|
102 |
|
private int threshold; |
103 |
|
|
104 |
|
private String name = ""; |
105 |
|
|
106 |
|
|
107 |
|
|
108 |
|
|
109 |
|
private int[][] cons2; |
110 |
|
|
111 |
|
|
112 |
|
|
113 |
|
|
114 |
|
private int[] cons2GapCounts; |
115 |
|
|
116 |
|
private String[] consSymbs; |
117 |
|
|
118 |
|
|
119 |
|
|
120 |
|
|
121 |
|
@param |
122 |
|
|
123 |
|
@param |
124 |
|
|
125 |
|
@param |
126 |
|
|
127 |
|
@param |
128 |
|
|
129 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
130 |
1011 |
public Conservation(String name, List<SequenceI> sequences, int start,... |
131 |
|
int end) |
132 |
|
{ |
133 |
1011 |
this(name, THRESHOLD_PERCENT, sequences, start, end); |
134 |
|
} |
135 |
|
|
136 |
|
|
137 |
|
|
138 |
|
|
139 |
|
@param |
140 |
|
|
141 |
|
@param |
142 |
|
|
143 |
|
|
144 |
|
@param |
145 |
|
|
146 |
|
@param |
147 |
|
|
148 |
|
@param |
149 |
|
|
150 |
|
|
|
|
| 89.5% |
Uncovered Elements: 2 (19) |
Complexity: 4 |
Complexity Density: 0.27 |
|
151 |
1015 |
public Conservation(String name, int threshold, List<SequenceI> sequences,... |
152 |
|
int start, int end) |
153 |
|
{ |
154 |
1015 |
this.name = name; |
155 |
1015 |
this.threshold = threshold; |
156 |
1015 |
this.start = start; |
157 |
1015 |
this.end = end; |
158 |
|
|
159 |
1015 |
maxLength = end - start + 1; |
160 |
|
|
161 |
|
|
162 |
1015 |
int s, sSize = sequences.size(); |
163 |
1015 |
SequenceI[] sarray = new SequenceI[sSize]; |
164 |
1015 |
this.sequences = sarray; |
165 |
1015 |
try |
166 |
|
{ |
167 |
12365 |
for (s = 0; s < sSize; s++) |
168 |
|
{ |
169 |
11353 |
sarray[s] = sequences.get(s); |
170 |
11354 |
if (sarray[s].getLength() > maxLength) |
171 |
|
{ |
172 |
6 |
maxLength = sarray[s].getLength(); |
173 |
|
} |
174 |
|
} |
175 |
|
} catch (ArrayIndexOutOfBoundsException ex) |
176 |
|
{ |
177 |
|
|
178 |
|
|
179 |
0 |
this.sequences = new SequenceI[0]; |
180 |
0 |
maxLength = 0; |
181 |
|
} |
182 |
|
} |
183 |
|
|
184 |
|
|
185 |
|
|
186 |
|
|
187 |
|
|
188 |
|
@param |
189 |
|
@param |
190 |
|
|
|
|
| 81.6% |
Uncovered Elements: 7 (38) |
Complexity: 9 |
Complexity Density: 0.38 |
|
191 |
11265 |
private void calcSeqNum(int i, ScoreMatrix sm)... |
192 |
|
{ |
193 |
11265 |
int sSize = sequences.length; |
194 |
|
|
195 |
11265 |
if ((i > -1) && (i < sSize)) |
196 |
|
{ |
197 |
11265 |
String sq = sequences[i].getSequenceAsString(); |
198 |
|
|
199 |
11265 |
if (seqNums.size() <= i) |
200 |
|
{ |
201 |
11265 |
seqNums.addElement(new int[sq.length() + 1]); |
202 |
|
} |
203 |
|
|
204 |
|
|
205 |
|
|
206 |
|
|
207 |
|
|
208 |
11265 |
if (sq.hashCode() != seqNums.elementAt(i)[0]) |
209 |
|
{ |
210 |
11265 |
int j; |
211 |
11265 |
int len; |
212 |
11265 |
seqNumsChanged = true; |
213 |
11265 |
len = sq.length(); |
214 |
|
|
215 |
11265 |
if (maxLength < len) |
216 |
|
{ |
217 |
0 |
maxLength = len; |
218 |
|
} |
219 |
|
|
220 |
11265 |
int[] sqnum = new int[len + 1]; |
221 |
|
|
222 |
11262 |
sqnum[0] = sq.hashCode(); |
223 |
|
|
224 |
1867655 |
for (j = 1; j <= len; j++) |
225 |
|
{ |
226 |
|
|
227 |
1857241 |
char residue = sq.charAt(j - 1); |
228 |
1857757 |
if (Comparison.isGap(residue)) |
229 |
|
{ |
230 |
413592 |
sqnum[j] = GAP_INDEX; |
231 |
|
} |
232 |
|
else |
233 |
|
{ |
234 |
1445264 |
sqnum[j] = sm.getMatrixIndex(residue); |
235 |
1444722 |
if (sqnum[j] == -1) |
236 |
|
{ |
237 |
41 |
sqnum[j] = GAP_INDEX; |
238 |
|
} |
239 |
|
} |
240 |
|
} |
241 |
|
|
242 |
11264 |
seqNums.setElementAt(sqnum, i); |
243 |
|
} |
244 |
|
else |
245 |
|
{ |
246 |
0 |
jalview.bin.Console.outPrintln("SEQUENCE HAS BEEN DELETED!!!"); |
247 |
|
} |
248 |
|
} |
249 |
|
else |
250 |
|
{ |
251 |
|
|
252 |
0 |
jalview.bin.Console.errPrintln( |
253 |
|
"ERROR: calcSeqNum called with out of range sequence index for Alignment\n"); |
254 |
|
} |
255 |
|
} |
256 |
|
|
257 |
|
|
258 |
|
|
259 |
|
|
|
|
| 96.3% |
Uncovered Elements: 1 (27) |
Complexity: 6 |
Complexity Density: 0.35 |
|
260 |
1011 |
public void calculate()... |
261 |
|
{ |
262 |
1011 |
int height = sequences.length; |
263 |
|
|
264 |
1011 |
total = new Map[maxLength]; |
265 |
|
|
266 |
142932 |
for (int column = start; column <= end; column++) |
267 |
|
{ |
268 |
141921 |
ResidueCount values = countResidues(column); |
269 |
|
|
270 |
|
|
271 |
|
|
272 |
|
|
273 |
141914 |
int thresh = (threshold * height) / 100; |
274 |
|
|
275 |
|
|
276 |
|
|
277 |
|
|
278 |
|
|
279 |
|
|
280 |
|
|
281 |
141918 |
SortedMap<String, Integer> resultHash = new TreeMap<>(); |
282 |
141919 |
SymbolCounts symbolCounts = values.getSymbolCounts(); |
283 |
141900 |
char[] symbols = symbolCounts.symbols; |
284 |
141917 |
int[] counts = symbolCounts.values; |
285 |
457965 |
for (int j = 0; j < symbols.length; j++) |
286 |
|
{ |
287 |
316061 |
char c = symbols[j]; |
288 |
316073 |
if (counts[j] > thresh) |
289 |
|
{ |
290 |
316056 |
recordConservation(resultHash, String.valueOf(c)); |
291 |
|
} |
292 |
|
} |
293 |
141922 |
if (values.getGapCount() > thresh) |
294 |
|
{ |
295 |
82672 |
recordConservation(resultHash, "-"); |
296 |
|
} |
297 |
|
|
298 |
141920 |
if (total.length > 0) |
299 |
|
{ |
300 |
141920 |
total[column - start] = resultHash; |
301 |
|
} |
302 |
|
} |
303 |
|
} |
304 |
|
|
305 |
|
|
306 |
|
|
307 |
|
|
308 |
|
@param |
309 |
|
|
310 |
|
|
311 |
|
|
312 |
|
@param |
313 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (17) |
Complexity: 5 |
Complexity Density: 0.45 |
|
314 |
398661 |
protected static void recordConservation(Map<String, Integer> resultMap,... |
315 |
|
String res) |
316 |
|
{ |
317 |
398667 |
res = res.toUpperCase(Locale.ROOT); |
318 |
398675 |
for (Entry<String, Map<String, Integer>> property : ResidueProperties.propHash |
319 |
|
.entrySet()) |
320 |
|
{ |
321 |
3971468 |
String propertyName = property.getKey(); |
322 |
3972505 |
Integer residuePropertyValue = property.getValue().get(res); |
323 |
|
|
324 |
3984563 |
if (!resultMap.containsKey(propertyName)) |
325 |
|
{ |
326 |
|
|
327 |
|
|
328 |
|
|
329 |
1418050 |
if (residuePropertyValue != null) |
330 |
|
{ |
331 |
1417958 |
resultMap.put(propertyName, residuePropertyValue); |
332 |
|
} |
333 |
|
else |
334 |
|
{ |
335 |
|
|
336 |
|
|
337 |
|
|
338 |
140 |
resultMap.put(propertyName, property.getValue().get("-")); |
339 |
|
} |
340 |
|
} |
341 |
|
else |
342 |
|
{ |
343 |
2565776 |
Integer currentResult = resultMap.get(propertyName); |
344 |
2565255 |
if (currentResult.intValue() != -1 |
345 |
|
&& !currentResult.equals(residuePropertyValue)) |
346 |
|
{ |
347 |
|
|
348 |
|
|
349 |
|
|
350 |
745337 |
resultMap.put(propertyName, Integer.valueOf(-1)); |
351 |
|
} |
352 |
|
} |
353 |
|
} |
354 |
|
} |
355 |
|
|
356 |
|
|
357 |
|
|
358 |
|
|
359 |
|
@param |
360 |
|
@return |
361 |
|
|
|
|
| 91.3% |
Uncovered Elements: 2 (23) |
Complexity: 6 |
Complexity Density: 0.46 |
|
362 |
141921 |
protected ResidueCount countResidues(int column)... |
363 |
|
{ |
364 |
141921 |
ResidueCount values = new ResidueCount(false); |
365 |
|
|
366 |
2021876 |
for (int row = 0; row < sequences.length; row++) |
367 |
|
{ |
368 |
1879937 |
if (sequences[row].getLength() > column) |
369 |
|
{ |
370 |
1865618 |
char c = sequences[row].getCharAt(column); |
371 |
1865555 |
if (canonicaliseAa) |
372 |
|
{ |
373 |
1865563 |
int index = ResidueProperties.aaIndex[c]; |
374 |
1866084 |
c = index > 20 ? '-' : ResidueProperties.aa[index].charAt(0); |
375 |
|
} |
376 |
|
else |
377 |
|
{ |
378 |
0 |
c = toUpperCase(c); |
379 |
|
} |
380 |
1866147 |
if (Comparison.isGap(c)) |
381 |
|
{ |
382 |
414833 |
values.addGap(); |
383 |
|
} |
384 |
|
else |
385 |
|
{ |
386 |
1451327 |
values.add(c); |
387 |
|
} |
388 |
|
} |
389 |
|
else |
390 |
|
{ |
391 |
14336 |
values.addGap(); |
392 |
|
} |
393 |
|
} |
394 |
141913 |
return values; |
395 |
|
} |
396 |
|
|
397 |
|
|
398 |
|
|
399 |
|
|
400 |
|
@return |
401 |
|
|
|
|
| 94.1% |
Uncovered Elements: 2 (34) |
Complexity: 8 |
Complexity Density: 0.4 |
|
402 |
141897 |
public int[] countConservationAndGaps(int column)... |
403 |
|
{ |
404 |
141898 |
int gapCount = 0; |
405 |
141897 |
boolean fullyConserved = true; |
406 |
141901 |
int iSize = sequences.length; |
407 |
|
|
408 |
141903 |
if (iSize == 0) |
409 |
|
{ |
410 |
0 |
return new int[] { 0, 0 }; |
411 |
|
} |
412 |
|
|
413 |
141901 |
char lastRes = '0'; |
414 |
2018303 |
for (int i = 0; i < iSize; i++) |
415 |
|
{ |
416 |
1876850 |
if (column >= sequences[i].getLength()) |
417 |
|
{ |
418 |
14336 |
gapCount++; |
419 |
14336 |
continue; |
420 |
|
} |
421 |
|
|
422 |
1862642 |
char c = sequences[i].getCharAt(column); |
423 |
|
|
424 |
|
|
425 |
1864151 |
if (Comparison.isGap((c))) |
426 |
|
{ |
427 |
414647 |
gapCount++; |
428 |
|
} |
429 |
|
else |
430 |
|
{ |
431 |
1449458 |
c = toUpperCase(c); |
432 |
1450295 |
if (lastRes == '0') |
433 |
|
{ |
434 |
134389 |
lastRes = c; |
435 |
|
} |
436 |
1451433 |
if (c != lastRes) |
437 |
|
{ |
438 |
454462 |
fullyConserved = false; |
439 |
|
} |
440 |
|
} |
441 |
|
} |
442 |
|
|
443 |
141891 |
int[] r = new int[] { fullyConserved ? 1 : 0, gapCount }; |
444 |
141868 |
return r; |
445 |
|
} |
446 |
|
|
447 |
|
|
448 |
|
|
449 |
|
|
450 |
|
|
451 |
|
@param |
452 |
|
@return |
453 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 3 |
Complexity Density: 1 |
|
454 |
1449355 |
char toUpperCase(char c)... |
455 |
|
{ |
456 |
1449529 |
if ('a' <= c && c <= 'z') |
457 |
|
{ |
458 |
6813 |
c -= TOUPPERCASE; |
459 |
|
} |
460 |
1449495 |
return c; |
461 |
|
} |
462 |
|
|
463 |
|
|
464 |
|
|
465 |
|
|
466 |
|
@param |
467 |
|
|
468 |
|
|
469 |
|
@param |
470 |
|
|
471 |
|
|
472 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (55) |
Complexity: 13 |
Complexity Density: 0.39 |
|
473 |
1008 |
public void verdict(boolean positiveOnly, float maxPercentageGaps)... |
474 |
|
{ |
475 |
|
|
476 |
|
|
477 |
1008 |
StringBuilder consString = new StringBuilder(end); |
478 |
|
|
479 |
|
|
480 |
|
|
481 |
|
|
482 |
1098 |
for (int i = 0; i < start; i++) |
483 |
|
{ |
484 |
90 |
consString.append('-'); |
485 |
|
} |
486 |
1008 |
consSymbs = new String[end - start + 1]; |
487 |
142897 |
for (int i = start; i <= end; i++) |
488 |
|
{ |
489 |
141896 |
int[] gapcons = countConservationAndGaps(i); |
490 |
141885 |
boolean fullyConserved = gapcons[0] == 1; |
491 |
141895 |
int totGaps = gapcons[1]; |
492 |
141907 |
float pgaps = (totGaps * 100f) / sequences.length; |
493 |
|
|
494 |
141910 |
if (maxPercentageGaps > pgaps) |
495 |
|
{ |
496 |
100475 |
Map<String, Integer> resultHash = total[i - start]; |
497 |
100473 |
int count = 0; |
498 |
100473 |
StringBuilder positives = new StringBuilder(64); |
499 |
100471 |
StringBuilder negatives = new StringBuilder(32); |
500 |
100472 |
for (String type : resultHash.keySet()) |
501 |
|
{ |
502 |
1003378 |
int result = resultHash.get(type).intValue(); |
503 |
1004397 |
if (result == -1) |
504 |
|
{ |
505 |
|
|
506 |
|
|
507 |
|
|
508 |
463047 |
continue; |
509 |
|
} |
510 |
541240 |
count++; |
511 |
541339 |
if (result == 1) |
512 |
|
{ |
513 |
|
|
514 |
|
|
515 |
|
|
516 |
170392 |
positives.append(positives.length() == 0 ? "" : " "); |
517 |
170379 |
positives.append(type); |
518 |
|
} |
519 |
541352 |
if (result == 0 && !positiveOnly) |
520 |
|
{ |
521 |
|
|
522 |
|
|
523 |
|
|
524 |
370979 |
negatives.append(negatives.length() == 0 ? "" : " "); |
525 |
370978 |
negatives.append("!").append(type); |
526 |
|
} |
527 |
|
} |
528 |
100469 |
if (negatives.length() > 0) |
529 |
|
{ |
530 |
59065 |
positives.append(" ").append(negatives); |
531 |
|
} |
532 |
100465 |
consSymbs[i - start] = positives.toString(); |
533 |
|
|
534 |
100472 |
if (count < 10) |
535 |
|
{ |
536 |
68095 |
consString.append(count); |
537 |
|
} |
538 |
|
else |
539 |
|
{ |
540 |
32375 |
consString.append(fullyConserved ? "*" : "+"); |
541 |
|
} |
542 |
|
} |
543 |
|
else |
544 |
|
{ |
545 |
41436 |
consString.append('-'); |
546 |
|
} |
547 |
|
} |
548 |
|
|
549 |
1008 |
consSequence = new Sequence(name, consString.toString(), start, end); |
550 |
|
} |
551 |
|
|
552 |
|
|
553 |
|
|
554 |
|
|
555 |
|
@return |
556 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
557 |
1024 |
public SequenceI getConsSequence()... |
558 |
|
{ |
559 |
1024 |
return consSequence; |
560 |
|
} |
561 |
|
|
562 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
563 |
996 |
public void findQuality()... |
564 |
|
{ |
565 |
996 |
findQuality(0, maxLength - 1, ScoreModels.getInstance().getBlosum62()); |
566 |
|
} |
567 |
|
|
568 |
|
|
569 |
|
|
570 |
|
|
571 |
|
@param |
572 |
|
|
|
|
| 96.7% |
Uncovered Elements: 1 (30) |
Complexity: 8 |
Complexity Density: 0.44 |
|
573 |
996 |
private void percentIdentity(ScoreMatrix sm)... |
574 |
|
{ |
575 |
996 |
seqNums = new Vector<>(); |
576 |
996 |
int i = 0, iSize = sequences.length; |
577 |
|
|
578 |
12261 |
for (i = 0; i < iSize; i++) |
579 |
|
{ |
580 |
11265 |
calcSeqNum(i, sm); |
581 |
|
} |
582 |
|
|
583 |
996 |
if ((cons2 == null) || seqNumsChanged) |
584 |
|
{ |
585 |
|
|
586 |
|
|
587 |
996 |
cons2 = new int[maxLength][24]; |
588 |
996 |
cons2GapCounts = new int[maxLength]; |
589 |
|
|
590 |
996 |
int j = 0; |
591 |
|
|
592 |
12261 |
while (j < sequences.length) |
593 |
|
{ |
594 |
11265 |
int[] sqnum = seqNums.elementAt(j); |
595 |
|
|
596 |
1863774 |
for (i = 1; i < sqnum.length; i++) |
597 |
|
{ |
598 |
1854077 |
int index = sqnum[i]; |
599 |
1855491 |
if (index == GAP_INDEX) |
600 |
|
{ |
601 |
413610 |
cons2GapCounts[i - 1]++; |
602 |
|
} |
603 |
|
else |
604 |
|
{ |
605 |
1442088 |
cons2[i - 1][index]++; |
606 |
|
} |
607 |
|
} |
608 |
|
|
609 |
|
|
610 |
25556 |
for (i = sqnum.length - 1; i < maxLength; i++) |
611 |
|
{ |
612 |
14291 |
cons2GapCounts[i]++; |
613 |
|
} |
614 |
11265 |
j++; |
615 |
|
} |
616 |
|
} |
617 |
|
} |
618 |
|
|
619 |
|
|
620 |
|
|
621 |
|
|
622 |
|
|
623 |
|
@param |
624 |
|
@param |
625 |
|
@param |
626 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (61) |
Complexity: 11 |
Complexity Density: 0.27 |
|
627 |
996 |
protected void findQuality(int startCol, int endCol,... |
628 |
|
ScoreMatrix scoreMatrix) |
629 |
|
{ |
630 |
996 |
quality = new Vector<>(); |
631 |
|
|
632 |
996 |
double max = -Double.MAX_VALUE; |
633 |
996 |
float[][] scores = scoreMatrix.getMatrix(); |
634 |
|
|
635 |
996 |
percentIdentity(scoreMatrix); |
636 |
|
|
637 |
996 |
int size = seqNums.size(); |
638 |
996 |
int[] lengths = new int[size]; |
639 |
|
|
640 |
12261 |
for (int l = 0; l < size; l++) |
641 |
|
{ |
642 |
11265 |
lengths[l] = seqNums.elementAt(l).length - 1; |
643 |
|
} |
644 |
|
|
645 |
996 |
final int symbolCount = scoreMatrix.getSize(); |
646 |
|
|
647 |
142034 |
for (int j = startCol; j <= endCol; j++) |
648 |
|
{ |
649 |
141038 |
double bigtot = 0; |
650 |
|
|
651 |
|
|
652 |
141036 |
double[] x = new double[symbolCount]; |
653 |
|
|
654 |
3518493 |
for (int ii = 0; ii < symbolCount; ii++) |
655 |
|
{ |
656 |
3378938 |
x[ii] = 0; |
657 |
|
|
658 |
|
|
659 |
|
|
660 |
|
|
661 |
|
|
662 |
|
|
663 |
79668868 |
for (int i2 = 0; i2 < symbolCount - 1; i2++) |
664 |
|
{ |
665 |
76423092 |
x[ii] += (((double) cons2[j][i2] * scores[ii][i2]) + 4D); |
666 |
|
} |
667 |
3379981 |
x[ii] += 4D + cons2GapCounts[j] * scoreMatrix.getMinimumScore(); |
668 |
|
|
669 |
3376721 |
x[ii] /= size; |
670 |
|
} |
671 |
|
|
672 |
|
|
673 |
2014482 |
for (int k = 0; k < size; k++) |
674 |
|
{ |
675 |
1873608 |
double tot = 0; |
676 |
1873935 |
double[] xx = new double[symbolCount]; |
677 |
|
|
678 |
1873311 |
int seqNum = (j < lengths[k]) ? seqNums.elementAt(k)[j + 1] |
679 |
|
: GAP_INDEX; |
680 |
|
|
681 |
44315026 |
for (int i = 0; i < symbolCount - 1; i++) |
682 |
|
{ |
683 |
42522474 |
double sr = 4D; |
684 |
42647246 |
if (seqNum == GAP_INDEX) |
685 |
|
{ |
686 |
9830172 |
sr += scoreMatrix.getMinimumScore(); |
687 |
|
} |
688 |
|
else |
689 |
|
{ |
690 |
32845883 |
sr += scores[i][seqNum]; |
691 |
|
} |
692 |
|
|
693 |
42505981 |
xx[i] = x[i] - sr; |
694 |
|
|
695 |
42513205 |
tot += (xx[i] * xx[i]); |
696 |
|
} |
697 |
|
|
698 |
1874139 |
bigtot += Math.sqrt(tot); |
699 |
|
} |
700 |
|
|
701 |
141033 |
max = Math.max(max, bigtot); |
702 |
|
|
703 |
141034 |
quality.addElement(Double.valueOf(bigtot)); |
704 |
|
} |
705 |
|
|
706 |
996 |
double newmax = -Double.MAX_VALUE; |
707 |
|
|
708 |
141899 |
for (int j = startCol; j <= endCol; j++) |
709 |
|
{ |
710 |
140902 |
double tmp = quality.elementAt(j).doubleValue(); |
711 |
|
|
712 |
140904 |
tmp = ((max - tmp) * (size - cons2GapCounts[j])) / size; |
713 |
|
|
714 |
|
|
715 |
140911 |
quality.setElementAt(Double.valueOf(tmp), j); |
716 |
|
|
717 |
140906 |
if (tmp > newmax) |
718 |
|
{ |
719 |
2676 |
newmax = tmp; |
720 |
|
} |
721 |
|
} |
722 |
|
|
723 |
996 |
qualityMinimum = 0D; |
724 |
996 |
qualityMaximum = newmax; |
725 |
|
} |
726 |
|
|
727 |
|
|
728 |
|
|
729 |
|
|
730 |
|
|
731 |
|
|
732 |
|
@param |
733 |
|
|
734 |
|
@param |
735 |
|
|
736 |
|
@param |
737 |
|
|
738 |
|
@param |
739 |
|
|
740 |
|
|
|
|
| 96.7% |
Uncovered Elements: 2 (60) |
Complexity: 16 |
Complexity Density: 0.4 |
|
741 |
994 |
public void completeAnnotations(AlignmentAnnotation conservation,... |
742 |
|
AlignmentAnnotation quality2, int istart, int alWidth) |
743 |
|
{ |
744 |
994 |
SequenceI cons = getConsSequence(); |
745 |
|
|
746 |
|
|
747 |
|
|
748 |
|
|
749 |
995 |
float minR = 0.3f; |
750 |
996 |
float minG = 0.0f; |
751 |
996 |
float minB = 0f; |
752 |
996 |
float maxR = 1.0f - minR; |
753 |
996 |
float maxG = 0.9f - minG; |
754 |
996 |
float maxB = 0f - minB; |
755 |
|
|
756 |
996 |
float min = 0f; |
757 |
996 |
float max = 11f; |
758 |
996 |
float qmin = 0f; |
759 |
996 |
float qmax = 0f; |
760 |
|
|
761 |
996 |
if (conservation != null && conservation.annotations != null |
762 |
|
&& conservation.annotations.length != alWidth) |
763 |
|
{ |
764 |
368 |
conservation.annotations = new Annotation[alWidth]; |
765 |
|
} |
766 |
|
|
767 |
996 |
if (quality2 != null) |
768 |
|
{ |
769 |
996 |
quality2.graphMax = (float) qualityMaximum; |
770 |
995 |
if (quality2.annotations != null |
771 |
|
&& quality2.annotations.length != alWidth) |
772 |
|
{ |
773 |
369 |
quality2.annotations = new Annotation[alWidth]; |
774 |
|
} |
775 |
996 |
qmin = (float) qualityMinimum; |
776 |
996 |
qmax = (float) qualityMaximum; |
777 |
|
} |
778 |
|
|
779 |
142033 |
for (int i = istart; i < alWidth; i++) |
780 |
|
{ |
781 |
141041 |
float value = 0; |
782 |
|
|
783 |
141043 |
char c = cons.getCharAt(i); |
784 |
|
|
785 |
141042 |
if (Character.isDigit(c)) |
786 |
|
{ |
787 |
67805 |
value = c - '0'; |
788 |
|
} |
789 |
73236 |
else if (c == '*') |
790 |
|
{ |
791 |
31987 |
value = 11; |
792 |
|
} |
793 |
41249 |
else if (c == '+') |
794 |
|
{ |
795 |
90 |
value = 10; |
796 |
|
} |
797 |
|
|
798 |
141040 |
if (conservation != null) |
799 |
|
{ |
800 |
140881 |
float vprop = value - min; |
801 |
140883 |
vprop /= max; |
802 |
140883 |
int consp = i - start; |
803 |
140882 |
String conssym = (value > 0 && consp > -1 |
804 |
|
&& consp < consSymbs.length) ? consSymbs[consp] : ""; |
805 |
140878 |
conservation.annotations[i] = new Annotation(String.valueOf(c), |
806 |
|
conssym, ' ', value, new Color(minR + (maxR * vprop), |
807 |
|
minG + (maxG * vprop), minB + (maxB * vprop))); |
808 |
|
} |
809 |
|
|
810 |
|
|
811 |
141034 |
if (quality2 != null) |
812 |
|
{ |
813 |
141039 |
value = quality.elementAt(i).floatValue(); |
814 |
141039 |
float vprop = value - qmin; |
815 |
141040 |
vprop /= qmax; |
816 |
141043 |
String description = FORMAT_3DP.form(value); |
817 |
141035 |
quality2.annotations[i] = new Annotation(" ", description, ' ', |
818 |
|
value, new Color(minR + (maxR * vprop), |
819 |
|
minG + (maxG * vprop), minB + (maxB * vprop))); |
820 |
|
} |
821 |
|
} |
822 |
|
} |
823 |
|
|
824 |
|
|
825 |
|
|
826 |
|
|
827 |
|
@param |
828 |
|
|
829 |
|
@param |
830 |
|
@param |
831 |
|
|
832 |
|
@param |
833 |
|
|
834 |
|
@param |
835 |
|
|
836 |
|
|
837 |
|
@param |
838 |
|
|
839 |
|
@param |
840 |
|
|
841 |
|
@return |
842 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
843 |
1000 |
public static Conservation calculateConservation(String name,... |
844 |
|
List<SequenceI> seqs, int start, int end, boolean positiveOnly, |
845 |
|
int maxPercentGaps, boolean calcQuality) |
846 |
|
{ |
847 |
1000 |
Conservation cons = new Conservation(name, seqs, start, end); |
848 |
1000 |
cons.calculate(); |
849 |
999 |
cons.verdict(positiveOnly, maxPercentGaps); |
850 |
|
|
851 |
999 |
if (calcQuality) |
852 |
|
{ |
853 |
996 |
cons.findQuality(); |
854 |
|
} |
855 |
|
|
856 |
999 |
return cons; |
857 |
|
} |
858 |
|
|
859 |
|
|
860 |
|
|
861 |
|
|
862 |
|
|
863 |
|
|
864 |
|
|
865 |
|
@param |
866 |
|
@return |
867 |
|
|
|
|
| 90% |
Uncovered Elements: 1 (10) |
Complexity: 5 |
Complexity Density: 0.83 |
|
868 |
7 |
String getTooltip(int column)... |
869 |
|
{ |
870 |
7 |
SequenceI cons = getConsSequence(); |
871 |
7 |
char val = column < cons.getLength() ? cons.getCharAt(column) : '-'; |
872 |
7 |
boolean hasConservation = val != '-' && val != '0'; |
873 |
7 |
int consp = column - start; |
874 |
7 |
String tip = (hasConservation && consp > -1 && consp < consSymbs.length) |
875 |
|
? consSymbs[consp] |
876 |
|
: ""; |
877 |
7 |
return tip; |
878 |
|
} |
879 |
|
} |