1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.datamodel; |
22 |
|
|
23 |
|
import java.util.Iterator; |
24 |
|
import java.util.NoSuchElementException; |
25 |
|
import java.util.Vector; |
26 |
|
|
27 |
|
import jalview.util.Comparison; |
28 |
|
import jalview.util.MapList; |
29 |
|
|
|
|
| 73.2% |
Uncovered Elements: 62 (231) |
Complexity: 75 |
Complexity Density: 0.64 |
|
30 |
|
public class Mapping |
31 |
|
{ |
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
@author |
37 |
|
|
38 |
|
|
|
|
| 92% |
Uncovered Elements: 7 (88) |
Complexity: 24 |
Complexity Density: 0.44 |
|
39 |
|
public class AlignedCodonIterator implements Iterator<AlignedCodon> |
40 |
|
{ |
41 |
|
|
42 |
|
|
43 |
|
|
44 |
|
private final char gap; |
45 |
|
|
46 |
|
|
47 |
|
|
48 |
|
|
49 |
|
private final SequenceI alignedSeq; |
50 |
|
|
51 |
|
|
52 |
|
|
53 |
|
|
54 |
|
private int start; |
55 |
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
private int alignedColumn = 0; |
60 |
|
|
61 |
|
|
62 |
|
|
63 |
|
|
64 |
|
private int alignedBases = 0; |
65 |
|
|
66 |
|
|
67 |
|
|
68 |
|
|
69 |
|
private Iterator<int[]> fromRanges; |
70 |
|
|
71 |
|
|
72 |
|
|
73 |
|
|
74 |
|
private Iterator<int[]> toRanges; |
75 |
|
|
76 |
|
|
77 |
|
|
78 |
|
|
79 |
|
private int[] currentFromRange = null; |
80 |
|
|
81 |
|
|
82 |
|
|
83 |
|
|
84 |
|
private int[] currentToRange = null; |
85 |
|
|
86 |
|
|
87 |
|
|
88 |
|
|
89 |
|
private int fromPosition = 0; |
90 |
|
|
91 |
|
|
92 |
|
|
93 |
|
|
94 |
|
private int toPosition = 0; |
95 |
|
|
96 |
|
|
97 |
|
|
98 |
|
|
99 |
|
@param |
100 |
|
|
101 |
|
@param |
102 |
|
|
|
|
| 86.7% |
Uncovered Elements: 2 (15) |
Complexity: 3 |
Complexity Density: 0.27 |
|
103 |
37 |
public AlignedCodonIterator(SequenceI seq, char gapChar)... |
104 |
|
{ |
105 |
37 |
this.alignedSeq = seq; |
106 |
37 |
this.start = seq.getStart(); |
107 |
37 |
this.gap = gapChar; |
108 |
37 |
fromRanges = map.getFromRanges().iterator(); |
109 |
37 |
toRanges = map.getToRanges().iterator(); |
110 |
37 |
if (fromRanges.hasNext()) |
111 |
|
{ |
112 |
37 |
currentFromRange = fromRanges.next(); |
113 |
37 |
fromPosition = currentFromRange[0]; |
114 |
|
} |
115 |
37 |
if (toRanges.hasNext()) |
116 |
|
{ |
117 |
37 |
currentToRange = toRanges.next(); |
118 |
37 |
toPosition = currentToRange[0]; |
119 |
|
} |
120 |
|
} |
121 |
|
|
122 |
|
|
123 |
|
|
124 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (9) |
Complexity: 4 |
Complexity Density: 0.8 |
|
125 |
21419 |
@Override... |
126 |
|
public boolean hasNext() |
127 |
|
{ |
128 |
21419 |
if (fromRanges.hasNext()) |
129 |
|
{ |
130 |
13 |
return true; |
131 |
|
} |
132 |
21406 |
if (currentFromRange == null || fromPosition >= currentFromRange[1]) |
133 |
|
{ |
134 |
36 |
return false; |
135 |
|
} |
136 |
21370 |
return true; |
137 |
|
} |
138 |
|
|
139 |
|
|
140 |
|
|
141 |
|
|
142 |
|
@throws |
143 |
|
|
144 |
|
@throws |
145 |
|
|
146 |
|
|
|
|
| 77.8% |
Uncovered Elements: 2 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
|
147 |
10699 |
@Override... |
148 |
|
public AlignedCodon next() throws IncompleteCodonException |
149 |
|
{ |
150 |
10699 |
if (!hasNext()) |
151 |
|
{ |
152 |
0 |
throw new NoSuchElementException(); |
153 |
|
} |
154 |
|
|
155 |
10699 |
int[] codon = getNextCodon(); |
156 |
10698 |
int[] alignedCodon = getAlignedCodon(codon); |
157 |
|
|
158 |
10698 |
String peptide = getPeptide(); |
159 |
10698 |
int peptideCol = toPosition - 1 - Mapping.this.to.getStart(); |
160 |
10698 |
return new AlignedCodon(alignedCodon[0], alignedCodon[1], |
161 |
|
alignedCodon[2], peptide, peptideCol); |
162 |
|
} |
163 |
|
|
164 |
|
|
165 |
|
|
166 |
|
|
167 |
|
|
168 |
|
@return |
169 |
|
@throws |
170 |
|
|
171 |
|
|
|
|
| 85.7% |
Uncovered Elements: 2 (14) |
Complexity: 3 |
Complexity Density: 0.3 |
|
172 |
10699 |
private String getPeptide()... |
173 |
|
{ |
174 |
|
|
175 |
|
|
176 |
10699 |
if (toPosition <= currentToRange[1]) |
177 |
|
{ |
178 |
10698 |
SequenceI seq = Mapping.this.to; |
179 |
10698 |
char pep = seq.getCharAt(toPosition - seq.getStart()); |
180 |
10698 |
toPosition++; |
181 |
10698 |
return String.valueOf(pep); |
182 |
|
} |
183 |
1 |
if (!toRanges.hasNext()) |
184 |
|
{ |
185 |
0 |
throw new NoSuchElementException( |
186 |
|
"Ran out of peptide at position " + toPosition); |
187 |
|
} |
188 |
1 |
currentToRange = toRanges.next(); |
189 |
1 |
toPosition = currentToRange[0]; |
190 |
1 |
return getPeptide(); |
191 |
|
} |
192 |
|
|
193 |
|
|
194 |
|
|
195 |
|
|
196 |
|
@throws |
197 |
|
|
198 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (16) |
Complexity: 4 |
Complexity Density: 0.4 |
|
199 |
10699 |
private int[] getNextCodon()... |
200 |
|
{ |
201 |
10699 |
int[] codon = new int[3]; |
202 |
10699 |
int codonbase = 0; |
203 |
|
|
204 |
42811 |
while (codonbase < 3) |
205 |
|
{ |
206 |
32113 |
if (fromPosition <= currentFromRange[1]) |
207 |
|
{ |
208 |
|
|
209 |
|
|
210 |
|
|
211 |
32096 |
codon[codonbase++] = fromPosition++; |
212 |
|
} |
213 |
|
else |
214 |
|
{ |
215 |
|
|
216 |
|
|
217 |
|
|
218 |
17 |
if (!fromRanges.hasNext()) |
219 |
|
{ |
220 |
1 |
throw new IncompleteCodonException(); |
221 |
|
} |
222 |
16 |
currentFromRange = fromRanges.next(); |
223 |
16 |
fromPosition = currentFromRange[0]; |
224 |
|
} |
225 |
|
} |
226 |
10698 |
return codon; |
227 |
|
} |
228 |
|
|
229 |
|
|
230 |
|
|
231 |
|
|
232 |
|
|
233 |
|
|
234 |
|
@param |
235 |
|
@return |
236 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
237 |
10698 |
private int[] getAlignedCodon(int[] codon)... |
238 |
|
{ |
239 |
10698 |
int[] aligned = new int[codon.length]; |
240 |
42792 |
for (int i = 0; i < codon.length; i++) |
241 |
|
{ |
242 |
32094 |
aligned[i] = getAlignedColumn(codon[i]); |
243 |
|
} |
244 |
10698 |
return aligned; |
245 |
|
} |
246 |
|
|
247 |
|
|
248 |
|
|
249 |
|
|
250 |
|
|
251 |
|
@param |
252 |
|
@return |
253 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (11) |
Complexity: 5 |
Complexity Density: 0.71 |
|
254 |
32094 |
private int getAlignedColumn(int sequencePos)... |
255 |
|
{ |
256 |
|
|
257 |
|
|
258 |
|
|
259 |
32094 |
int truePos = sequencePos - (start - 1); |
260 |
32094 |
int length = alignedSeq.getLength(); |
261 |
75377 |
while (alignedBases < truePos && alignedColumn < length) |
262 |
|
{ |
263 |
43283 |
char c = alignedSeq.getCharAt(alignedColumn++); |
264 |
43283 |
if (c != gap && !Comparison.isGap(c)) |
265 |
|
{ |
266 |
32122 |
alignedBases++; |
267 |
|
} |
268 |
|
} |
269 |
32094 |
return alignedColumn - 1; |
270 |
|
} |
271 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
272 |
0 |
@Override... |
273 |
|
public void remove() |
274 |
|
{ |
275 |
|
|
276 |
|
} |
277 |
|
|
278 |
|
} |
279 |
|
|
280 |
|
|
281 |
|
|
282 |
|
|
283 |
|
|
284 |
|
|
285 |
|
MapList map = null; |
286 |
|
|
287 |
|
|
288 |
|
|
289 |
|
|
290 |
|
SequenceI to = null; |
291 |
|
|
292 |
|
|
293 |
|
|
294 |
|
|
295 |
|
private String mappedFromId; |
296 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
297 |
943 |
public Mapping(MapList map)... |
298 |
|
{ |
299 |
943 |
super(); |
300 |
943 |
this.map = map; |
301 |
|
} |
302 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
303 |
664 |
public Mapping(SequenceI to, MapList map)... |
304 |
|
{ |
305 |
664 |
this(map); |
306 |
664 |
this.to = to; |
307 |
|
} |
308 |
|
|
309 |
|
|
310 |
|
|
311 |
|
|
312 |
|
@param |
313 |
|
|
314 |
|
@param |
315 |
|
|
316 |
|
@param |
317 |
|
|
318 |
|
|
319 |
|
@param |
320 |
|
|
321 |
|
@param |
322 |
|
|
323 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
324 |
65 |
public Mapping(SequenceI to, int[] exon, int[] is, int i, int j)... |
325 |
|
{ |
326 |
65 |
this(to, new MapList(exon, is, i, j)); |
327 |
|
} |
328 |
|
|
329 |
|
|
330 |
|
|
331 |
|
|
332 |
|
|
333 |
|
@param |
334 |
|
|
|
|
| 77.8% |
Uncovered Elements: 2 (9) |
Complexity: 4 |
Complexity Density: 0.8 |
|
335 |
8 |
public Mapping(Mapping map2)... |
336 |
|
{ |
337 |
8 |
if (map2 != this && map2 != null) |
338 |
|
{ |
339 |
8 |
if (map2.map != null) |
340 |
|
{ |
341 |
8 |
map = new MapList(map2.map); |
342 |
|
} |
343 |
8 |
to = map2.to; |
344 |
8 |
mappedFromId = map2.mappedFromId; |
345 |
|
} |
346 |
|
} |
347 |
|
|
348 |
|
|
349 |
|
@return |
350 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
351 |
22848 |
public MapList getMap()... |
352 |
|
{ |
353 |
22847 |
return map; |
354 |
|
} |
355 |
|
|
356 |
|
|
357 |
|
@param |
358 |
|
|
359 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
360 |
2 |
public void setMap(MapList map)... |
361 |
|
{ |
362 |
2 |
this.map = map; |
363 |
|
} |
364 |
|
|
365 |
|
|
366 |
|
|
367 |
|
|
368 |
|
@param |
369 |
|
@return |
370 |
|
@see |
371 |
|
|
|
|
| 81.8% |
Uncovered Elements: 4 (22) |
Complexity: 12 |
Complexity Density: 1 |
|
372 |
43 |
@Override... |
373 |
|
public boolean equals(Object o) |
374 |
|
{ |
375 |
43 |
if (o == null || !(o instanceof Mapping)) |
376 |
|
{ |
377 |
0 |
return false; |
378 |
|
} |
379 |
43 |
Mapping other = (Mapping) o; |
380 |
43 |
if (other == this) |
381 |
|
{ |
382 |
6 |
return true; |
383 |
|
} |
384 |
37 |
if (other.to != to) |
385 |
|
{ |
386 |
25 |
return false; |
387 |
|
} |
388 |
12 |
if ((map != null && other.map == null) |
389 |
|
|| (map == null && other.map != null)) |
390 |
|
{ |
391 |
0 |
return false; |
392 |
|
} |
393 |
12 |
if ((map == null && other.map == null) || map.equals(other.map)) |
394 |
|
{ |
395 |
4 |
return true; |
396 |
|
} |
397 |
8 |
return false; |
398 |
|
} |
399 |
|
|
400 |
|
|
401 |
|
|
402 |
|
|
|
|
| 75% |
Uncovered Elements: 2 (8) |
Complexity: 3 |
Complexity Density: 0.75 |
|
403 |
2 |
@Override... |
404 |
|
public int hashCode() |
405 |
|
{ |
406 |
2 |
int hashCode = (this.to == null ? 1 : this.to.hashCode()); |
407 |
2 |
if (this.map != null) |
408 |
|
{ |
409 |
2 |
hashCode = hashCode * 31 + this.map.hashCode(); |
410 |
|
} |
411 |
|
|
412 |
2 |
return hashCode; |
413 |
|
} |
414 |
|
|
415 |
|
|
416 |
|
|
417 |
|
|
418 |
|
|
419 |
|
@param |
420 |
|
@return |
421 |
|
|
|
|
| 88.9% |
Uncovered Elements: 1 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
422 |
16335 |
public int getPosition(int mpos)... |
423 |
|
{ |
424 |
16335 |
if (map != null) |
425 |
|
{ |
426 |
16335 |
int[] mp = map.shiftTo(mpos); |
427 |
16335 |
if (mp != null) |
428 |
|
{ |
429 |
16320 |
return mp[0]; |
430 |
|
} |
431 |
|
} |
432 |
15 |
return mpos; |
433 |
|
} |
434 |
|
|
435 |
|
|
436 |
|
|
437 |
|
|
438 |
|
|
|
|
| 60% |
Uncovered Elements: 2 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
439 |
223 |
public int getWidth()... |
440 |
|
{ |
441 |
223 |
if (map != null) |
442 |
|
{ |
443 |
223 |
return map.getFromRatio(); |
444 |
|
} |
445 |
0 |
return 1; |
446 |
|
} |
447 |
|
|
448 |
|
|
449 |
|
|
450 |
|
|
451 |
|
@return |
452 |
|
|
|
|
| 60% |
Uncovered Elements: 2 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
453 |
223 |
public int getMappedWidth()... |
454 |
|
{ |
455 |
223 |
if (map != null) |
456 |
|
{ |
457 |
223 |
return map.getToRatio(); |
458 |
|
} |
459 |
0 |
return 1; |
460 |
|
} |
461 |
|
|
462 |
|
|
463 |
|
|
464 |
|
|
465 |
|
|
466 |
|
@param |
467 |
|
@return |
468 |
|
|
|
|
| 88.9% |
Uncovered Elements: 1 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
469 |
9 |
public int getMappedPosition(int pos)... |
470 |
|
{ |
471 |
9 |
if (map != null) |
472 |
|
{ |
473 |
9 |
int[] mp = map.shiftFrom(pos); |
474 |
9 |
if (mp != null) |
475 |
|
{ |
476 |
4 |
return mp[0]; |
477 |
|
} |
478 |
|
} |
479 |
5 |
return pos; |
480 |
|
} |
481 |
|
|
|
|
| 0% |
Uncovered Elements: 9 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
482 |
0 |
public int[] getMappedWord(int pos)... |
483 |
|
{ |
484 |
0 |
if (map != null) |
485 |
|
{ |
486 |
0 |
int[] mp = map.shiftFrom(pos); |
487 |
0 |
if (mp != null) |
488 |
|
{ |
489 |
0 |
return new int[] { mp[0], mp[0] + mp[2] * (map.getToRatio() - 1) }; |
490 |
|
} |
491 |
|
} |
492 |
0 |
return null; |
493 |
|
} |
494 |
|
|
495 |
|
|
496 |
|
|
497 |
|
|
498 |
|
|
499 |
|
@param |
500 |
|
@return |
501 |
|
|
|
|
| 70% |
Uncovered Elements: 6 (20) |
Complexity: 5 |
Complexity Density: 0.42 |
|
502 |
3352 |
public SequenceFeature[] locateFeature(SequenceFeature f)... |
503 |
|
{ |
504 |
3352 |
if (true) |
505 |
|
{ |
506 |
3352 |
if (map != null) |
507 |
|
{ |
508 |
3352 |
int[] frange = map.locateInFrom(f.getBegin(), f.getEnd()); |
509 |
3352 |
if (frange == null) |
510 |
|
{ |
511 |
|
|
512 |
0 |
return null; |
513 |
|
} |
514 |
3352 |
SequenceFeature[] vf = new SequenceFeature[frange.length / 2]; |
515 |
6704 |
for (int i = 0, v = 0; i < frange.length; i += 2, v++) |
516 |
|
{ |
517 |
3352 |
vf[v] = new SequenceFeature(f, frange[i], frange[i + 1], |
518 |
|
f.getFeatureGroup(), f.getScore()); |
519 |
3352 |
if (frange.length > 2) |
520 |
|
{ |
521 |
0 |
vf[v].setDescription(f.getDescription() + "\nPart " + (v + 1)); |
522 |
|
} |
523 |
|
} |
524 |
3352 |
return vf; |
525 |
|
} |
526 |
|
} |
527 |
|
|
528 |
|
|
529 |
0 |
return new SequenceFeature[] { f }; |
530 |
|
} |
531 |
|
|
532 |
|
|
533 |
|
|
534 |
|
|
535 |
|
|
536 |
|
@param |
537 |
|
@param |
538 |
|
@return |
539 |
|
|
540 |
|
|
|
|
| 46.4% |
Uncovered Elements: 15 (28) |
Complexity: 9 |
Complexity Density: 0.75 |
|
541 |
3 |
public int[] locateRange(int from, int to)... |
542 |
|
{ |
543 |
3 |
if (map != null) |
544 |
|
{ |
545 |
3 |
if (from <= to) |
546 |
|
{ |
547 |
3 |
from = (map.getToLowest() < from) ? from : map.getToLowest(); |
548 |
3 |
to = (map.getToHighest() > to) ? to : map.getToHighest(); |
549 |
3 |
if (from > to) |
550 |
|
{ |
551 |
0 |
return null; |
552 |
|
} |
553 |
|
} |
554 |
|
else |
555 |
|
{ |
556 |
0 |
from = (map.getToHighest() > from) ? from : map.getToHighest(); |
557 |
0 |
to = (map.getToLowest() < to) ? to : map.getToLowest(); |
558 |
0 |
if (from < to) |
559 |
|
{ |
560 |
0 |
return null; |
561 |
|
} |
562 |
|
} |
563 |
3 |
return map.locateInFrom(from, to); |
564 |
|
} |
565 |
0 |
return new int[] { from, to }; |
566 |
|
} |
567 |
|
|
568 |
|
|
569 |
|
|
570 |
|
|
571 |
|
|
572 |
|
@param |
573 |
|
@param |
574 |
|
@return |
575 |
|
|
|
|
| 46.4% |
Uncovered Elements: 15 (28) |
Complexity: 9 |
Complexity Density: 0.75 |
|
576 |
34 |
public int[] locateMappedRange(int from, int to)... |
577 |
|
{ |
578 |
34 |
if (map != null) |
579 |
|
{ |
580 |
|
|
581 |
34 |
if (from <= to) |
582 |
|
{ |
583 |
34 |
from = (map.getFromLowest() < from) ? from : map.getFromLowest(); |
584 |
34 |
to = (map.getFromHighest() > to) ? to : map.getFromHighest(); |
585 |
34 |
if (from > to) |
586 |
|
{ |
587 |
0 |
return null; |
588 |
|
} |
589 |
|
} |
590 |
|
else |
591 |
|
{ |
592 |
0 |
from = (map.getFromHighest() > from) ? from : map.getFromHighest(); |
593 |
0 |
to = (map.getFromLowest() < to) ? to : map.getFromLowest(); |
594 |
0 |
if (from < to) |
595 |
|
{ |
596 |
0 |
return null; |
597 |
|
} |
598 |
|
} |
599 |
34 |
return map.locateInTo(from, to); |
600 |
|
} |
601 |
0 |
return new int[] { from, to }; |
602 |
|
} |
603 |
|
|
604 |
|
|
605 |
|
|
606 |
|
|
607 |
|
|
608 |
|
@param |
609 |
|
@return |
610 |
|
|
|
|
| 95.1% |
Uncovered Elements: 2 (41) |
Complexity: 8 |
Complexity Density: 0.3 |
|
611 |
2 |
public Mapping intersectVisContigs(int[] viscontigs)... |
612 |
|
{ |
613 |
2 |
Mapping copy = new Mapping(this); |
614 |
2 |
if (map != null) |
615 |
|
{ |
616 |
2 |
int vpos = 0; |
617 |
2 |
int apos = 0; |
618 |
2 |
Vector toRange = new Vector(); |
619 |
2 |
Vector fromRange = new Vector(); |
620 |
5 |
for (int vc = 0; vc < viscontigs.length; vc += 2) |
621 |
|
{ |
622 |
|
|
623 |
3 |
int[] mpr = locateMappedRange(1 + viscontigs[vc], |
624 |
|
viscontigs[vc + 1] - 1); |
625 |
3 |
if (mpr != null) |
626 |
|
{ |
627 |
6 |
for (int m = 0; m < mpr.length; m += 2) |
628 |
|
{ |
629 |
3 |
toRange.addElement(new int[] { mpr[m], mpr[m + 1] }); |
630 |
3 |
int[] xpos = locateRange(mpr[m], mpr[m + 1]); |
631 |
9 |
for (int x = 0; x < xpos.length; x += 2) |
632 |
|
{ |
633 |
6 |
fromRange.addElement(new int[] { xpos[x], xpos[x + 1] }); |
634 |
|
} |
635 |
|
} |
636 |
|
} |
637 |
|
} |
638 |
2 |
int[] from = new int[fromRange.size() * 2]; |
639 |
2 |
int[] to = new int[toRange.size() * 2]; |
640 |
2 |
int[] r; |
641 |
8 |
for (int f = 0, fSize = fromRange.size(); f < fSize; f++) |
642 |
|
{ |
643 |
6 |
r = (int[]) fromRange.elementAt(f); |
644 |
6 |
from[f * 2] = r[0]; |
645 |
6 |
from[f * 2 + 1] = r[1]; |
646 |
|
} |
647 |
5 |
for (int f = 0, fSize = toRange.size(); f < fSize; f++) |
648 |
|
{ |
649 |
3 |
r = (int[]) toRange.elementAt(f); |
650 |
3 |
to[f * 2] = r[0]; |
651 |
3 |
to[f * 2 + 1] = r[1]; |
652 |
|
} |
653 |
2 |
copy.setMap( |
654 |
|
new MapList(from, to, map.getFromRatio(), map.getToRatio())); |
655 |
|
} |
656 |
2 |
return copy; |
657 |
|
} |
658 |
|
|
659 |
|
|
660 |
|
|
661 |
|
|
662 |
|
@return |
663 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
664 |
1175 |
public SequenceI getTo()... |
665 |
|
{ |
666 |
1175 |
return to; |
667 |
|
} |
668 |
|
|
669 |
|
|
670 |
|
|
671 |
|
|
672 |
|
@param |
673 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
674 |
254 |
public void setTo(SequenceI tto)... |
675 |
|
{ |
676 |
254 |
to = tto; |
677 |
|
} |
678 |
|
|
679 |
|
|
680 |
|
|
681 |
|
|
682 |
|
|
683 |
|
@param |
684 |
|
|
685 |
|
@param |
686 |
|
@return |
687 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
688 |
37 |
public Iterator<AlignedCodon> getCodonIterator(SequenceI seq,... |
689 |
|
char gapChar) |
690 |
|
{ |
691 |
37 |
return new AlignedCodonIterator(seq, gapChar); |
692 |
|
} |
693 |
|
|
694 |
|
|
695 |
|
|
696 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
697 |
2 |
@Override... |
698 |
|
public String toString() |
699 |
|
{ |
700 |
2 |
return String.format("%s %s", this.map.toString(), |
701 |
2 |
this.to == null ? "" : this.to.getName()); |
702 |
|
} |
703 |
|
|
704 |
|
|
705 |
|
|
706 |
|
|
707 |
|
@return |
708 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
709 |
34 |
public String getMappedFromId()... |
710 |
|
{ |
711 |
34 |
return mappedFromId; |
712 |
|
} |
713 |
|
|
714 |
|
|
715 |
|
|
716 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
717 |
450 |
public void setMappedFromId(String mappedFromId)... |
718 |
|
{ |
719 |
450 |
this.mappedFromId = mappedFromId; |
720 |
|
} |
721 |
|
|
722 |
|
} |