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.ArrayList; |
24 |
|
import java.util.Arrays; |
25 |
|
import java.util.BitSet; |
26 |
|
import java.util.Collection; |
27 |
|
import java.util.Collections; |
28 |
|
import java.util.Enumeration; |
29 |
|
import java.util.HashSet; |
30 |
|
import java.util.Hashtable; |
31 |
|
import java.util.Iterator; |
32 |
|
import java.util.List; |
33 |
|
import java.util.Map; |
34 |
|
import java.util.Set; |
35 |
|
import java.util.Vector; |
36 |
|
|
37 |
|
import jalview.analysis.AlignmentUtils; |
38 |
|
import jalview.datamodel.AlignedCodonFrame.SequenceToSequenceMapping; |
39 |
|
import jalview.io.FastaFile; |
40 |
|
import jalview.util.Comparison; |
41 |
|
import jalview.util.LinkedIdentityHashSet; |
42 |
|
import jalview.util.MessageManager; |
43 |
|
|
44 |
|
|
45 |
|
|
46 |
|
|
47 |
|
|
48 |
|
@author |
49 |
|
|
50 |
|
|
|
|
| 64.6% |
Uncovered Elements: 380 (1,074) |
Complexity: 318 |
Complexity Density: 0.51 |
|
51 |
|
public class Alignment implements AlignmentI, AutoCloseable |
52 |
|
{ |
53 |
|
private Alignment dataset; |
54 |
|
|
55 |
|
private List<SequenceI> sequences; |
56 |
|
|
57 |
|
protected List<SequenceGroup> groups; |
58 |
|
|
59 |
|
protected char gapCharacter = '-'; |
60 |
|
|
61 |
|
private boolean nucleotide = true; |
62 |
|
|
63 |
|
public boolean hasRNAStructure = false; |
64 |
|
|
65 |
|
public AlignmentAnnotation[] annotations; |
66 |
|
|
67 |
|
HiddenSequences hiddenSequences; |
68 |
|
|
69 |
|
HiddenColumns hiddenCols; |
70 |
|
|
71 |
|
public Hashtable alignmentProperties; |
72 |
|
|
73 |
|
private List<AlignedCodonFrame> codonFrameList; |
74 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 2 |
Complexity Density: 0.25 |
|
75 |
1766 |
private void initAlignment(SequenceI[] seqs)... |
76 |
|
{ |
77 |
1766 |
groups = Collections.synchronizedList(new ArrayList<SequenceGroup>()); |
78 |
1766 |
hiddenSequences = new HiddenSequences(this); |
79 |
1766 |
hiddenCols = new HiddenColumns(); |
80 |
1766 |
codonFrameList = new ArrayList<>(); |
81 |
|
|
82 |
1766 |
nucleotide = Comparison.isNucleotide(seqs); |
83 |
|
|
84 |
1766 |
sequences = Collections.synchronizedList(new ArrayList<SequenceI>()); |
85 |
|
|
86 |
34303 |
for (int i = 0; i < seqs.length; i++) |
87 |
|
{ |
88 |
32537 |
sequences.add(seqs[i]); |
89 |
|
} |
90 |
|
|
91 |
|
} |
92 |
|
|
93 |
|
|
94 |
|
|
95 |
|
|
96 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 4 |
Complexity Density: 0.67 |
|
97 |
4 |
public Alignment(AlignmentI al)... |
98 |
|
{ |
99 |
4 |
SequenceI[] seqs = al.getSequencesArray(); |
100 |
19 |
for (int i = 0; i < seqs.length; i++) |
101 |
|
{ |
102 |
15 |
seqs[i] = new Sequence(seqs[i]); |
103 |
|
} |
104 |
|
|
105 |
4 |
initAlignment(seqs); |
106 |
|
|
107 |
|
|
108 |
|
|
109 |
|
|
110 |
4 |
if (dataset == null && al.getDataset() == null) |
111 |
|
{ |
112 |
1 |
this.setCodonFrames(al.getCodonFrames()); |
113 |
|
} |
114 |
|
} |
115 |
|
|
116 |
|
|
117 |
|
|
118 |
|
|
119 |
|
@param |
120 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
121 |
1760 |
public Alignment(SequenceI[] seqs)... |
122 |
|
{ |
123 |
1760 |
initAlignment(seqs); |
124 |
|
} |
125 |
|
|
126 |
|
|
127 |
|
|
128 |
|
|
129 |
|
@param |
130 |
|
|
131 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
132 |
2 |
public Alignment(SeqCigar[] alseqs)... |
133 |
|
{ |
134 |
2 |
SequenceI[] seqs = SeqCigar.createAlignmentSequences(alseqs, |
135 |
|
gapCharacter, new HiddenColumns(), null); |
136 |
2 |
initAlignment(seqs); |
137 |
|
} |
138 |
|
|
139 |
|
|
140 |
|
|
141 |
|
|
142 |
|
|
143 |
|
|
144 |
|
|
145 |
|
@param |
146 |
|
|
147 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
148 |
0 |
public static AlignmentI createAlignment(CigarArray compactAlignment)... |
149 |
|
{ |
150 |
0 |
throw new Error(MessageManager |
151 |
|
.getString("error.alignment_cigararray_not_implemented")); |
152 |
|
|
153 |
|
} |
154 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
155 |
69223 |
@Override... |
156 |
|
public List<SequenceI> getSequences() |
157 |
|
{ |
158 |
69223 |
return sequences; |
159 |
|
} |
160 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
161 |
13 |
@Override... |
162 |
|
public List<SequenceI> getSequences( |
163 |
|
Map<SequenceI, SequenceCollectionI> hiddenReps) |
164 |
|
{ |
165 |
|
|
166 |
|
|
167 |
13 |
return sequences; |
168 |
|
} |
169 |
|
|
|
|
| 66.7% |
Uncovered Elements: 2 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
170 |
29013 |
@Override... |
171 |
|
public SequenceI[] getSequencesArray() |
172 |
|
{ |
173 |
29013 |
if (sequences == null) |
174 |
|
{ |
175 |
0 |
return null; |
176 |
|
} |
177 |
29013 |
synchronized (sequences) |
178 |
|
{ |
179 |
29013 |
return sequences.toArray(new SequenceI[sequences.size()]); |
180 |
|
} |
181 |
|
} |
182 |
|
|
183 |
|
|
184 |
|
|
185 |
|
|
186 |
|
@return |
187 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
188 |
0 |
@Override... |
189 |
|
public Map<String, List<SequenceI>> getSequencesByName() |
190 |
|
{ |
191 |
0 |
return AlignmentUtils.getSequencesByName(this); |
192 |
|
} |
193 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 3 |
Complexity Density: 0.75 |
|
194 |
995092 |
@Override... |
195 |
|
public SequenceI getSequenceAt(int i) |
196 |
|
{ |
197 |
995097 |
synchronized (sequences) |
198 |
|
{ |
199 |
|
|
200 |
995097 |
if (i > -1 && i < sequences.size()) |
201 |
|
{ |
202 |
995091 |
return sequences.get(i); |
203 |
|
} |
204 |
|
} |
205 |
|
|
206 |
7 |
return null; |
207 |
|
} |
208 |
|
|
|
|
| 91.7% |
Uncovered Elements: 1 (12) |
Complexity: 3 |
Complexity Density: 0.38 |
|
209 |
2312 |
@Override... |
210 |
|
public SequenceI getSequenceAtAbsoluteIndex(int i) |
211 |
|
{ |
212 |
2312 |
SequenceI seq = null; |
213 |
2312 |
if (getHiddenSequences().getSize() > 0) |
214 |
|
{ |
215 |
1609 |
seq = getHiddenSequences().getHiddenSequence(i); |
216 |
1609 |
if (seq == null) |
217 |
|
{ |
218 |
|
|
219 |
|
|
220 |
1609 |
int index = getHiddenSequences().findIndexWithoutHiddenSeqs(i); |
221 |
1609 |
seq = getSequenceAt(index); |
222 |
|
} |
223 |
|
} |
224 |
|
else |
225 |
|
{ |
226 |
703 |
seq = getSequenceAt(i); |
227 |
|
} |
228 |
2312 |
return seq; |
229 |
|
} |
230 |
|
|
231 |
|
|
232 |
|
|
233 |
|
|
234 |
|
|
235 |
|
|
236 |
|
@param |
237 |
|
|
|
|
| 87.5% |
Uncovered Elements: 3 (24) |
Complexity: 6 |
Complexity Density: 0.43 |
|
238 |
251 |
@Override... |
239 |
|
public void addSequence(SequenceI snew) |
240 |
|
{ |
241 |
251 |
if (dataset != null) |
242 |
|
{ |
243 |
|
|
244 |
|
|
245 |
68 |
SequenceI dsseq = snew.getDatasetSequence(); |
246 |
68 |
if (dsseq == null) |
247 |
|
{ |
248 |
|
|
249 |
5 |
SequenceI adding = snew.deriveSequence(); |
250 |
5 |
snew = adding; |
251 |
5 |
dsseq = snew.getDatasetSequence(); |
252 |
|
} |
253 |
68 |
if (getDataset().findIndex(dsseq) == -1) |
254 |
|
{ |
255 |
65 |
getDataset().addSequence(dsseq); |
256 |
|
} |
257 |
|
|
258 |
|
} |
259 |
251 |
if (sequences == null) |
260 |
|
{ |
261 |
0 |
initAlignment(new SequenceI[] { snew }); |
262 |
|
} |
263 |
|
else |
264 |
|
{ |
265 |
251 |
synchronized (sequences) |
266 |
|
{ |
267 |
251 |
sequences.add(snew); |
268 |
|
} |
269 |
|
} |
270 |
251 |
if (hiddenSequences != null) |
271 |
|
{ |
272 |
251 |
hiddenSequences.adjustHeightSequenceAdded(); |
273 |
|
} |
274 |
|
} |
275 |
|
|
|
|
| 50% |
Uncovered Elements: 4 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
276 |
50 |
@Override... |
277 |
|
public SequenceI replaceSequenceAt(int i, SequenceI snew) |
278 |
|
{ |
279 |
50 |
synchronized (sequences) |
280 |
|
{ |
281 |
50 |
if (sequences.size() > i) |
282 |
|
{ |
283 |
50 |
return sequences.set(i, snew); |
284 |
|
|
285 |
|
} |
286 |
|
else |
287 |
|
{ |
288 |
0 |
sequences.add(snew); |
289 |
0 |
hiddenSequences.adjustHeightSequenceAdded(); |
290 |
|
} |
291 |
0 |
return null; |
292 |
|
} |
293 |
|
} |
294 |
|
|
295 |
|
|
296 |
|
|
297 |
|
|
298 |
|
@return |
299 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
300 |
8415 |
@Override... |
301 |
|
public List<SequenceGroup> getGroups() |
302 |
|
{ |
303 |
8415 |
return groups; |
304 |
|
} |
305 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 3 |
Complexity Density: 0.6 |
|
306 |
0 |
@Override... |
307 |
|
public void close() |
308 |
|
{ |
309 |
0 |
if (getDataset() != null) |
310 |
|
{ |
311 |
0 |
try |
312 |
|
{ |
313 |
0 |
getDataset().removeAlignmentRef(); |
314 |
|
} catch (Throwable e) |
315 |
|
{ |
316 |
0 |
e.printStackTrace(); |
317 |
|
} |
318 |
|
} |
319 |
|
|
320 |
0 |
nullReferences(); |
321 |
|
} |
322 |
|
|
323 |
|
|
324 |
|
|
325 |
|
|
326 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
327 |
0 |
void nullReferences()... |
328 |
|
{ |
329 |
0 |
dataset = null; |
330 |
0 |
sequences = null; |
331 |
0 |
groups = null; |
332 |
0 |
annotations = null; |
333 |
0 |
hiddenSequences = null; |
334 |
|
} |
335 |
|
|
336 |
|
|
337 |
|
|
338 |
|
|
339 |
|
|
340 |
|
@throws |
341 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
342 |
0 |
private void removeAlignmentRef() throws Throwable... |
343 |
|
{ |
344 |
0 |
if (--alignmentRefs == 0) |
345 |
|
{ |
346 |
0 |
nullReferences(); |
347 |
|
} |
348 |
|
} |
349 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
350 |
70 |
@Override... |
351 |
|
public void deleteSequence(SequenceI s) |
352 |
|
{ |
353 |
70 |
synchronized (sequences) |
354 |
|
{ |
355 |
70 |
deleteSequence(findIndex(s)); |
356 |
|
} |
357 |
|
} |
358 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 3 |
Complexity Density: 0.75 |
|
359 |
75 |
@Override... |
360 |
|
public void deleteSequence(int i) |
361 |
|
{ |
362 |
75 |
synchronized (sequences) |
363 |
|
{ |
364 |
75 |
if (i > -1 && i < getHeight()) |
365 |
|
{ |
366 |
73 |
sequences.remove(i); |
367 |
73 |
hiddenSequences.adjustHeightSequenceDeleted(i); |
368 |
|
} |
369 |
|
} |
370 |
|
} |
371 |
|
|
|
|
| 80% |
Uncovered Elements: 1 (5) |
Complexity: 3 |
Complexity Density: 1 |
|
372 |
530 |
@Override... |
373 |
|
public void deleteHiddenSequence(int i) |
374 |
|
{ |
375 |
530 |
synchronized (sequences) |
376 |
|
{ |
377 |
530 |
if (i > -1 && i < getHeight()) |
378 |
|
{ |
379 |
530 |
sequences.remove(i); |
380 |
|
} |
381 |
|
} |
382 |
|
} |
383 |
|
|
384 |
|
|
385 |
|
|
386 |
|
|
387 |
|
@see |
388 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 4 |
Complexity Density: 0.67 |
|
389 |
19 |
@Override... |
390 |
|
public SequenceGroup findGroup(SequenceI seq, int position) |
391 |
|
{ |
392 |
19 |
synchronized (groups) |
393 |
|
{ |
394 |
19 |
for (SequenceGroup sg : groups) |
395 |
|
{ |
396 |
23 |
if (sg.getSequences(null).contains(seq)) |
397 |
|
{ |
398 |
16 |
if (position >= sg.getStartRes() && position <= sg.getEndRes()) |
399 |
|
{ |
400 |
10 |
return sg; |
401 |
|
} |
402 |
|
} |
403 |
|
} |
404 |
|
} |
405 |
9 |
return null; |
406 |
|
} |
407 |
|
|
408 |
|
|
409 |
|
|
410 |
|
|
411 |
|
@see |
412 |
|
|
413 |
|
|
|
|
| 78.9% |
Uncovered Elements: 4 (19) |
Complexity: 5 |
Complexity Density: 0.38 |
|
414 |
45877 |
@Override... |
415 |
|
public SequenceGroup[] findAllGroups(SequenceI s) |
416 |
|
{ |
417 |
45877 |
ArrayList<SequenceGroup> temp = new ArrayList<>(); |
418 |
|
|
419 |
45877 |
synchronized (groups) |
420 |
|
{ |
421 |
45877 |
int gSize = groups.size(); |
422 |
53793 |
for (int i = 0; i < gSize; i++) |
423 |
|
{ |
424 |
7916 |
SequenceGroup sg = groups.get(i); |
425 |
7916 |
if (sg == null || sg.getSequences() == null) |
426 |
|
{ |
427 |
0 |
this.deleteGroup(sg); |
428 |
0 |
gSize--; |
429 |
0 |
continue; |
430 |
|
} |
431 |
|
|
432 |
7916 |
if (sg.getSequences().contains(s)) |
433 |
|
{ |
434 |
6044 |
temp.add(sg); |
435 |
|
} |
436 |
|
} |
437 |
|
} |
438 |
45877 |
SequenceGroup[] ret = new SequenceGroup[temp.size()]; |
439 |
45877 |
return temp.toArray(ret); |
440 |
|
} |
441 |
|
|
442 |
|
|
|
|
| 34.8% |
Uncovered Elements: 15 (23) |
Complexity: 6 |
Complexity Density: 0.46 |
|
443 |
109 |
@Override... |
444 |
|
public void addGroup(SequenceGroup sg) |
445 |
|
{ |
446 |
109 |
synchronized (groups) |
447 |
|
{ |
448 |
109 |
if (!groups.contains(sg)) |
449 |
|
{ |
450 |
100 |
if (hiddenSequences.getSize() > 0) |
451 |
|
{ |
452 |
0 |
int i, iSize = sg.getSize(); |
453 |
0 |
for (i = 0; i < iSize; i++) |
454 |
|
{ |
455 |
0 |
if (!sequences.contains(sg.getSequenceAt(i))) |
456 |
|
{ |
457 |
0 |
sg.deleteSequence(sg.getSequenceAt(i), false); |
458 |
0 |
iSize--; |
459 |
0 |
i--; |
460 |
|
} |
461 |
|
} |
462 |
|
|
463 |
0 |
if (sg.getSize() < 1) |
464 |
|
{ |
465 |
0 |
return; |
466 |
|
} |
467 |
|
} |
468 |
100 |
sg.setContext(this, true); |
469 |
100 |
groups.add(sg); |
470 |
|
} |
471 |
|
} |
472 |
|
} |
473 |
|
|
474 |
|
|
475 |
|
|
476 |
|
|
477 |
|
@param |
478 |
|
|
479 |
|
|
|
|
| 0% |
Uncovered Elements: 39 (39) |
Complexity: 11 |
Complexity Density: 0.52 |
|
480 |
0 |
private void removeAnnotationForGroup(SequenceGroup gp)... |
481 |
|
{ |
482 |
0 |
if (annotations == null || annotations.length == 0) |
483 |
|
{ |
484 |
0 |
return; |
485 |
|
} |
486 |
|
|
487 |
0 |
AlignmentAnnotation[] t, |
488 |
|
todelete = new AlignmentAnnotation[annotations.length], |
489 |
|
tokeep = new AlignmentAnnotation[annotations.length]; |
490 |
0 |
int i, p, k; |
491 |
0 |
if (gp == null) |
492 |
|
{ |
493 |
0 |
for (i = 0, p = 0, k = 0; i < annotations.length; i++) |
494 |
|
{ |
495 |
0 |
if (annotations[i].groupRef != null) |
496 |
|
{ |
497 |
0 |
todelete[p++] = annotations[i]; |
498 |
|
} |
499 |
|
else |
500 |
|
{ |
501 |
0 |
tokeep[k++] = annotations[i]; |
502 |
|
} |
503 |
|
} |
504 |
|
} |
505 |
|
else |
506 |
|
{ |
507 |
0 |
for (i = 0, p = 0, k = 0; i < annotations.length; i++) |
508 |
|
{ |
509 |
0 |
if (annotations[i].groupRef == gp) |
510 |
|
{ |
511 |
0 |
todelete[p++] = annotations[i]; |
512 |
|
} |
513 |
|
else |
514 |
|
{ |
515 |
0 |
tokeep[k++] = annotations[i]; |
516 |
|
} |
517 |
|
} |
518 |
|
} |
519 |
0 |
if (p > 0) |
520 |
|
{ |
521 |
|
|
522 |
0 |
for (i = 0; i < p; i++) |
523 |
|
{ |
524 |
0 |
unhookAnnotation(todelete[i]); |
525 |
0 |
todelete[i] = null; |
526 |
|
} |
527 |
0 |
t = new AlignmentAnnotation[k]; |
528 |
0 |
for (i = 0; i < k; i++) |
529 |
|
{ |
530 |
0 |
t[i] = tokeep[i]; |
531 |
|
} |
532 |
0 |
annotations = t; |
533 |
|
} |
534 |
|
} |
535 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
536 |
0 |
@Override... |
537 |
|
public void deleteAllGroups() |
538 |
|
{ |
539 |
0 |
synchronized (groups) |
540 |
|
{ |
541 |
0 |
if (annotations != null) |
542 |
|
{ |
543 |
0 |
removeAnnotationForGroup(null); |
544 |
|
} |
545 |
0 |
for (SequenceGroup sg : groups) |
546 |
|
{ |
547 |
0 |
sg.setContext(null, false); |
548 |
|
} |
549 |
0 |
groups.clear(); |
550 |
|
} |
551 |
|
} |
552 |
|
|
553 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 2 |
Complexity Density: 0.4 |
|
554 |
0 |
@Override... |
555 |
|
public void deleteGroup(SequenceGroup g) |
556 |
|
{ |
557 |
0 |
synchronized (groups) |
558 |
|
{ |
559 |
0 |
if (groups.contains(g)) |
560 |
|
{ |
561 |
0 |
removeAnnotationForGroup(g); |
562 |
0 |
groups.remove(g); |
563 |
0 |
g.setContext(null, false); |
564 |
|
} |
565 |
|
} |
566 |
|
} |
567 |
|
|
568 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
569 |
309 |
@Override... |
570 |
|
public SequenceI findName(String name) |
571 |
|
{ |
572 |
309 |
return findName(name, false); |
573 |
|
} |
574 |
|
|
575 |
|
|
576 |
|
|
577 |
|
|
578 |
|
@see |
579 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
580 |
1415 |
@Override... |
581 |
|
public SequenceI findName(String token, boolean b) |
582 |
|
{ |
583 |
1415 |
return findName(null, token, b); |
584 |
|
} |
585 |
|
|
586 |
|
|
587 |
|
|
588 |
|
|
589 |
|
@see |
590 |
|
|
591 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (31) |
Complexity: 9 |
Complexity Density: 0.47 |
|
592 |
2154 |
@Override... |
593 |
|
public SequenceI findName(SequenceI startAfter, String token, boolean b) |
594 |
|
{ |
595 |
|
|
596 |
2154 |
int i = 0; |
597 |
2154 |
SequenceI sq = null; |
598 |
2154 |
String sqname = null; |
599 |
2154 |
int nseq = sequences.size(); |
600 |
2154 |
if (startAfter != null) |
601 |
|
{ |
602 |
|
|
603 |
739 |
boolean matched = false; |
604 |
6502 |
while (i < nseq) |
605 |
|
{ |
606 |
6487 |
if (getSequenceAt(i++) == startAfter) |
607 |
|
{ |
608 |
724 |
matched = true; |
609 |
724 |
break; |
610 |
|
} |
611 |
|
} |
612 |
739 |
if (!matched) |
613 |
|
{ |
614 |
15 |
i = 0; |
615 |
|
} |
616 |
|
} |
617 |
17964 |
while (i < nseq) |
618 |
|
{ |
619 |
17192 |
sq = getSequenceAt(i); |
620 |
17192 |
sqname = sq.getName(); |
621 |
17192 |
if (sqname.equals(token) |
622 |
|
|| (b && |
623 |
|
(sqname.equalsIgnoreCase(token)))) |
624 |
|
{ |
625 |
1382 |
return getSequenceAt(i); |
626 |
|
} |
627 |
|
|
628 |
15810 |
i++; |
629 |
|
} |
630 |
|
|
631 |
772 |
return null; |
632 |
|
} |
633 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (16) |
Complexity: 4 |
Complexity Density: 0.4 |
|
634 |
22 |
@Override... |
635 |
|
public SequenceI[] findSequenceMatch(String name) |
636 |
|
{ |
637 |
22 |
Vector matches = new Vector(); |
638 |
22 |
int i = 0; |
639 |
|
|
640 |
493 |
while (i < sequences.size()) |
641 |
|
{ |
642 |
471 |
if (getSequenceAt(i).getName().equals(name)) |
643 |
|
{ |
644 |
5 |
matches.addElement(getSequenceAt(i)); |
645 |
|
} |
646 |
471 |
i++; |
647 |
|
} |
648 |
|
|
649 |
22 |
SequenceI[] result = new SequenceI[matches.size()]; |
650 |
27 |
for (i = 0; i < result.length; i++) |
651 |
|
{ |
652 |
5 |
result[i] = (SequenceI) matches.elementAt(i); |
653 |
|
} |
654 |
|
|
655 |
22 |
return result; |
656 |
|
|
657 |
|
} |
658 |
|
|
659 |
|
|
660 |
|
|
661 |
|
|
662 |
|
@see |
663 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
664 |
2387 |
@Override... |
665 |
|
public int findIndex(SequenceI s) |
666 |
|
{ |
667 |
2387 |
int i = 0; |
668 |
|
|
669 |
74511 |
while (i < sequences.size()) |
670 |
|
{ |
671 |
74418 |
if (s == getSequenceAt(i)) |
672 |
|
{ |
673 |
2294 |
return i; |
674 |
|
} |
675 |
|
|
676 |
72124 |
i++; |
677 |
|
} |
678 |
|
|
679 |
93 |
return -1; |
680 |
|
} |
681 |
|
|
682 |
|
|
683 |
|
|
684 |
|
|
685 |
|
@see |
686 |
|
|
687 |
|
|
|
|
| 80% |
Uncovered Elements: 2 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
688 |
6 |
@Override... |
689 |
|
public int findIndex(SearchResultsI results) |
690 |
|
{ |
691 |
6 |
int i = 0; |
692 |
|
|
693 |
33 |
while (i < sequences.size()) |
694 |
|
{ |
695 |
33 |
if (results.involvesSequence(getSequenceAt(i))) |
696 |
|
{ |
697 |
6 |
return i; |
698 |
|
} |
699 |
27 |
i++; |
700 |
|
} |
701 |
0 |
return -1; |
702 |
|
} |
703 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
704 |
55770 |
@Override... |
705 |
|
public int getHeight() |
706 |
|
{ |
707 |
55770 |
return sequences.size(); |
708 |
|
} |
709 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
710 |
10 |
@Override... |
711 |
|
public int getAbsoluteHeight() |
712 |
|
{ |
713 |
10 |
return sequences.size() + getHiddenSequences().getSize(); |
714 |
|
} |
715 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
716 |
14613 |
@Override... |
717 |
|
public int getWidth() |
718 |
|
{ |
719 |
14613 |
int maxLength = -1; |
720 |
|
|
721 |
654933 |
for (int i = 0; i < sequences.size(); i++) |
722 |
|
{ |
723 |
640321 |
maxLength = Math.max(maxLength, getSequenceAt(i).getLength()); |
724 |
|
} |
725 |
14613 |
return maxLength; |
726 |
|
} |
727 |
|
|
|
|
| 83.3% |
Uncovered Elements: 1 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
728 |
7610 |
@Override... |
729 |
|
public int getVisibleWidth() |
730 |
|
{ |
731 |
7610 |
int w = getWidth(); |
732 |
7610 |
if (hiddenCols != null) |
733 |
|
{ |
734 |
7610 |
w -= hiddenCols.getSize(); |
735 |
|
} |
736 |
7610 |
return w; |
737 |
|
} |
738 |
|
|
739 |
|
|
740 |
|
|
741 |
|
|
742 |
|
@param |
743 |
|
|
744 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
745 |
539 |
@Override... |
746 |
|
public void setGapCharacter(char gc) |
747 |
|
{ |
748 |
539 |
gapCharacter = gc; |
749 |
539 |
synchronized (sequences) |
750 |
|
{ |
751 |
539 |
for (SequenceI seq : sequences) |
752 |
|
{ |
753 |
4455 |
seq.setSequence(seq.getSequenceAsString().replace('.', gc) |
754 |
|
.replace('-', gc).replace(' ', gc)); |
755 |
|
} |
756 |
|
} |
757 |
|
} |
758 |
|
|
759 |
|
|
760 |
|
|
761 |
|
|
762 |
|
@return |
763 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
764 |
431 |
@Override... |
765 |
|
public char getGapCharacter() |
766 |
|
{ |
767 |
431 |
return gapCharacter; |
768 |
|
} |
769 |
|
|
770 |
|
|
771 |
|
|
772 |
|
|
773 |
|
@see |
774 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
775 |
0 |
@Override... |
776 |
|
public boolean isAligned() |
777 |
|
{ |
778 |
0 |
return isAligned(false); |
779 |
|
} |
780 |
|
|
781 |
|
|
782 |
|
|
783 |
|
|
784 |
|
@see |
785 |
|
|
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 7 |
Complexity Density: 0.88 |
|
786 |
0 |
@Override... |
787 |
|
public boolean isAligned(boolean includeHidden) |
788 |
|
{ |
789 |
0 |
int width = getWidth(); |
790 |
0 |
if (hiddenSequences == null || hiddenSequences.getSize() == 0) |
791 |
|
{ |
792 |
0 |
includeHidden = true; |
793 |
|
} |
794 |
0 |
for (int i = 0; i < sequences.size(); i++) |
795 |
|
{ |
796 |
0 |
if (includeHidden || !hiddenSequences.isHidden(getSequenceAt(i))) |
797 |
|
{ |
798 |
0 |
if (getSequenceAt(i).getLength() != width) |
799 |
|
{ |
800 |
0 |
return false; |
801 |
|
} |
802 |
|
} |
803 |
|
} |
804 |
|
|
805 |
0 |
return true; |
806 |
|
} |
807 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
808 |
0 |
@Override... |
809 |
|
public boolean isHidden(int alignmentIndex) |
810 |
|
{ |
811 |
0 |
return (getHiddenSequences().getHiddenSequence(alignmentIndex) != null); |
812 |
|
} |
813 |
|
|
814 |
|
|
815 |
|
|
816 |
|
|
817 |
|
|
818 |
|
@param |
819 |
|
@return |
820 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (8) |
Complexity: 3 |
Complexity Density: 0.5 |
|
821 |
2 |
@Override... |
822 |
|
public boolean deleteAllAnnotations(boolean includingAutoCalculated) |
823 |
|
{ |
824 |
2 |
boolean result = false; |
825 |
2 |
for (AlignmentAnnotation alan : getAlignmentAnnotation()) |
826 |
|
{ |
827 |
8 |
if (!alan.autoCalculated || includingAutoCalculated) |
828 |
|
{ |
829 |
7 |
deleteAnnotation(alan); |
830 |
7 |
result = true; |
831 |
|
} |
832 |
|
} |
833 |
2 |
return result; |
834 |
|
} |
835 |
|
|
836 |
|
|
837 |
|
|
838 |
|
|
839 |
|
|
840 |
|
|
841 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
842 |
7 |
@Override... |
843 |
|
public boolean deleteAnnotation(AlignmentAnnotation aa) |
844 |
|
{ |
845 |
7 |
return deleteAnnotation(aa, true); |
846 |
|
} |
847 |
|
|
|
|
| 84.8% |
Uncovered Elements: 5 (33) |
Complexity: 8 |
Complexity Density: 0.42 |
|
848 |
233 |
@Override... |
849 |
|
public boolean deleteAnnotation(AlignmentAnnotation aa, boolean unhook) |
850 |
|
{ |
851 |
233 |
int aSize = 1; |
852 |
|
|
853 |
233 |
if (annotations != null) |
854 |
|
{ |
855 |
233 |
aSize = annotations.length; |
856 |
|
} |
857 |
|
|
858 |
233 |
if (aSize < 1) |
859 |
|
{ |
860 |
0 |
return false; |
861 |
|
} |
862 |
|
|
863 |
233 |
AlignmentAnnotation[] temp = new AlignmentAnnotation[aSize - 1]; |
864 |
|
|
865 |
233 |
boolean swap = false; |
866 |
233 |
int tIndex = 0; |
867 |
|
|
868 |
1500 |
for (int i = 0; i < aSize; i++) |
869 |
|
{ |
870 |
1267 |
if (annotations[i] == aa) |
871 |
|
{ |
872 |
233 |
swap = true; |
873 |
233 |
continue; |
874 |
|
} |
875 |
1034 |
if (tIndex < temp.length) |
876 |
|
{ |
877 |
1034 |
temp[tIndex++] = annotations[i]; |
878 |
|
} |
879 |
|
} |
880 |
|
|
881 |
233 |
if (swap) |
882 |
|
{ |
883 |
233 |
annotations = temp; |
884 |
233 |
if (unhook) |
885 |
|
{ |
886 |
7 |
unhookAnnotation(aa); |
887 |
|
} |
888 |
|
} |
889 |
233 |
return swap; |
890 |
|
} |
891 |
|
|
892 |
|
|
893 |
|
|
894 |
|
|
895 |
|
@param |
896 |
|
|
|
|
| 75% |
Uncovered Elements: 2 (8) |
Complexity: 3 |
Complexity Density: 0.75 |
|
897 |
7 |
private void unhookAnnotation(AlignmentAnnotation aa)... |
898 |
|
{ |
899 |
7 |
if (aa.sequenceRef != null) |
900 |
|
{ |
901 |
6 |
aa.sequenceRef.removeAlignmentAnnotation(aa); |
902 |
|
} |
903 |
7 |
if (aa.groupRef != null) |
904 |
|
{ |
905 |
|
|
906 |
0 |
aa.groupRef = null; |
907 |
|
} |
908 |
|
} |
909 |
|
|
910 |
|
|
911 |
|
|
912 |
|
|
913 |
|
|
914 |
|
|
915 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
916 |
3153 |
@Override... |
917 |
|
public void addAnnotation(AlignmentAnnotation aa) |
918 |
|
{ |
919 |
3153 |
addAnnotation(aa, -1); |
920 |
|
} |
921 |
|
|
922 |
|
|
923 |
|
|
924 |
|
|
925 |
|
|
926 |
|
|
927 |
|
|
|
|
| 96.9% |
Uncovered Elements: 1 (32) |
Complexity: 9 |
Complexity Density: 0.5 |
|
928 |
3403 |
@Override... |
929 |
|
public void addAnnotation(AlignmentAnnotation aa, int pos) |
930 |
|
{ |
931 |
3403 |
if (aa.getRNAStruc() != null) |
932 |
|
{ |
933 |
419 |
hasRNAStructure = true; |
934 |
|
} |
935 |
|
|
936 |
3403 |
int aSize = 1; |
937 |
3403 |
if (annotations != null) |
938 |
|
{ |
939 |
2768 |
aSize = annotations.length + 1; |
940 |
|
} |
941 |
|
|
942 |
3403 |
AlignmentAnnotation[] temp = new AlignmentAnnotation[aSize]; |
943 |
3403 |
int i = 0; |
944 |
3403 |
if (pos == -1 || pos >= aSize) |
945 |
|
{ |
946 |
3153 |
temp[aSize - 1] = aa; |
947 |
|
} |
948 |
|
else |
949 |
|
{ |
950 |
250 |
temp[pos] = aa; |
951 |
|
} |
952 |
3403 |
if (aSize > 1) |
953 |
|
{ |
954 |
2748 |
int p = 0; |
955 |
23966 |
for (i = 0; i < (aSize - 1); i++, p++) |
956 |
|
{ |
957 |
21218 |
if (p == pos) |
958 |
|
{ |
959 |
91 |
p++; |
960 |
|
} |
961 |
21218 |
if (p < temp.length) |
962 |
|
{ |
963 |
21218 |
temp[p] = annotations[i]; |
964 |
|
} |
965 |
|
} |
966 |
|
} |
967 |
|
|
968 |
3403 |
annotations = temp; |
969 |
|
} |
970 |
|
|
|
|
| 90% |
Uncovered Elements: 2 (20) |
Complexity: 7 |
Complexity Density: 0.58 |
|
971 |
210 |
@Override... |
972 |
|
public void setAnnotationIndex(AlignmentAnnotation aa, int index) |
973 |
|
{ |
974 |
210 |
if (aa == null || annotations == null || annotations.length - 1 < index) |
975 |
|
{ |
976 |
0 |
return; |
977 |
|
} |
978 |
|
|
979 |
210 |
int aSize = annotations.length; |
980 |
210 |
AlignmentAnnotation[] temp = new AlignmentAnnotation[aSize]; |
981 |
|
|
982 |
210 |
temp[index] = aa; |
983 |
|
|
984 |
3251 |
for (int i = 0; i < aSize; i++) |
985 |
|
{ |
986 |
3041 |
if (i == index) |
987 |
|
{ |
988 |
210 |
continue; |
989 |
|
} |
990 |
|
|
991 |
2831 |
if (i < index) |
992 |
|
{ |
993 |
2663 |
temp[i] = annotations[i]; |
994 |
|
} |
995 |
|
else |
996 |
|
{ |
997 |
168 |
temp[i] = annotations[i - 1]; |
998 |
|
} |
999 |
|
} |
1000 |
|
|
1001 |
210 |
annotations = temp; |
1002 |
|
} |
1003 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1004 |
42133 |
@Override... |
1005 |
|
|
1006 |
|
|
1007 |
|
|
1008 |
|
public AlignmentAnnotation[] getAlignmentAnnotation() |
1009 |
|
{ |
1010 |
42133 |
return annotations; |
1011 |
|
} |
1012 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1013 |
16944 |
@Override... |
1014 |
|
public boolean isNucleotide() |
1015 |
|
{ |
1016 |
16944 |
return nucleotide; |
1017 |
|
} |
1018 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1019 |
978 |
@Override... |
1020 |
|
public boolean hasRNAStructure() |
1021 |
|
{ |
1022 |
|
|
1023 |
978 |
return hasRNAStructure; |
1024 |
|
} |
1025 |
|
|
|
|
| 74.3% |
Uncovered Elements: 9 (35) |
Complexity: 11 |
Complexity Density: 0.58 |
|
1026 |
643 |
@Override... |
1027 |
|
public void setDataset(AlignmentI data) |
1028 |
|
{ |
1029 |
643 |
if (dataset == null && data == null) |
1030 |
|
{ |
1031 |
562 |
createDatasetAlignment(); |
1032 |
|
} |
1033 |
81 |
else if (dataset == null && data != null) |
1034 |
|
{ |
1035 |
66 |
if (data == this) |
1036 |
|
{ |
1037 |
1 |
throw new IllegalArgumentException("Circular dataset reference"); |
1038 |
|
} |
1039 |
65 |
if (!(data instanceof Alignment)) |
1040 |
|
{ |
1041 |
0 |
throw new Error( |
1042 |
|
"Implementation Error: jalview.datamodel.Alignment does not yet support other implementations of AlignmentI as its dataset reference"); |
1043 |
|
} |
1044 |
65 |
dataset = (Alignment) data; |
1045 |
846 |
for (int i = 0; i < getHeight(); i++) |
1046 |
|
{ |
1047 |
781 |
SequenceI currentSeq = getSequenceAt(i); |
1048 |
781 |
SequenceI dsq = currentSeq.getDatasetSequence(); |
1049 |
781 |
if (dsq == null) |
1050 |
|
{ |
1051 |
0 |
dsq = currentSeq.createDatasetSequence(); |
1052 |
0 |
dataset.addSequence(dsq); |
1053 |
|
} |
1054 |
|
else |
1055 |
|
{ |
1056 |
781 |
while (dsq.getDatasetSequence() != null) |
1057 |
|
{ |
1058 |
0 |
dsq = dsq.getDatasetSequence(); |
1059 |
|
} |
1060 |
781 |
if (dataset.findIndex(dsq) == -1) |
1061 |
|
{ |
1062 |
0 |
dataset.addSequence(dsq); |
1063 |
|
} |
1064 |
|
} |
1065 |
|
} |
1066 |
|
} |
1067 |
642 |
dataset.addAlignmentRef(); |
1068 |
|
} |
1069 |
|
|
1070 |
|
|
1071 |
|
|
1072 |
|
|
|
|
| 91.4% |
Uncovered Elements: 3 (35) |
Complexity: 10 |
Complexity Density: 0.53 |
|
1073 |
3991 |
private void resolveAndAddDatasetSeq(SequenceI currentSeq,... |
1074 |
|
Set<SequenceI> seqs, boolean createDatasetSequence) |
1075 |
|
{ |
1076 |
3991 |
SequenceI alignedSeq = currentSeq; |
1077 |
3991 |
if (currentSeq.getDatasetSequence() != null) |
1078 |
|
{ |
1079 |
822 |
currentSeq = currentSeq.getDatasetSequence(); |
1080 |
|
} |
1081 |
|
else |
1082 |
|
{ |
1083 |
3169 |
if (createDatasetSequence) |
1084 |
|
{ |
1085 |
3169 |
currentSeq = currentSeq.createDatasetSequence(); |
1086 |
|
} |
1087 |
|
} |
1088 |
|
|
1089 |
3991 |
List<SequenceI> toProcess = new ArrayList<>(); |
1090 |
3991 |
toProcess.add(currentSeq); |
1091 |
7988 |
while (toProcess.size() > 0) |
1092 |
|
{ |
1093 |
|
|
1094 |
3997 |
SequenceI curDs = toProcess.remove(0); |
1095 |
|
|
1096 |
3997 |
if (!seqs.add(curDs)) |
1097 |
|
{ |
1098 |
109 |
continue; |
1099 |
|
} |
1100 |
|
|
1101 |
|
|
1102 |
3888 |
if (curDs.getDBRefs() != null) |
1103 |
|
{ |
1104 |
569 |
for (DBRefEntry dbr : curDs.getDBRefs()) |
1105 |
|
{ |
1106 |
772 |
if (dbr.getMap() != null && dbr.getMap().getTo() != null) |
1107 |
|
{ |
1108 |
6 |
if (dbr.getMap().getTo() == alignedSeq) |
1109 |
|
{ |
1110 |
|
|
1111 |
|
|
1112 |
|
|
1113 |
2 |
dbr.getMap().setTo(currentSeq); |
1114 |
|
} |
1115 |
6 |
if (dbr.getMap().getTo().getDatasetSequence() != null) |
1116 |
|
{ |
1117 |
0 |
throw new Error("Implementation error: Map.getTo() for dbref " |
1118 |
|
+ dbr + " from " + curDs.getName() |
1119 |
|
+ " is not a dataset sequence."); |
1120 |
|
} |
1121 |
|
|
1122 |
|
|
1123 |
6 |
toProcess.add(dbr.getMap().getTo()); |
1124 |
|
} |
1125 |
|
} |
1126 |
|
} |
1127 |
|
} |
1128 |
|
} |
1129 |
|
|
1130 |
|
|
1131 |
|
|
1132 |
|
|
1133 |
|
|
|
|
| 73.9% |
Uncovered Elements: 6 (23) |
Complexity: 5 |
Complexity Density: 0.33 |
|
1134 |
577 |
public void createDatasetAlignment()... |
1135 |
|
{ |
1136 |
577 |
if (dataset != null) |
1137 |
|
{ |
1138 |
0 |
return; |
1139 |
|
} |
1140 |
|
|
1141 |
577 |
Set<SequenceI> seqs = new LinkedIdentityHashSet<>(); |
1142 |
|
|
1143 |
4568 |
for (int i = 0; i < getHeight(); i++) |
1144 |
|
{ |
1145 |
3991 |
SequenceI currentSeq = getSequenceAt(i); |
1146 |
3991 |
resolveAndAddDatasetSeq(currentSeq, seqs, true); |
1147 |
|
} |
1148 |
|
|
1149 |
|
|
1150 |
577 |
for (AlignedCodonFrame cf : codonFrameList) |
1151 |
|
{ |
1152 |
3 |
for (SequenceToSequenceMapping ssm : cf.getMappings()) |
1153 |
|
{ |
1154 |
1 |
if (!seqs.contains(ssm.getFromSeq())) |
1155 |
|
{ |
1156 |
0 |
resolveAndAddDatasetSeq(ssm.getFromSeq(), seqs, false); |
1157 |
|
} |
1158 |
1 |
if (!seqs.contains(ssm.getMapping().getTo())) |
1159 |
|
{ |
1160 |
0 |
resolveAndAddDatasetSeq(ssm.getMapping().getTo(), seqs, false); |
1161 |
|
} |
1162 |
|
} |
1163 |
|
} |
1164 |
|
|
1165 |
577 |
dataset = new Alignment(seqs.toArray(new SequenceI[seqs.size()])); |
1166 |
|
|
1167 |
577 |
dataset.codonFrameList = this.codonFrameList; |
1168 |
577 |
this.codonFrameList = null; |
1169 |
|
} |
1170 |
|
|
1171 |
|
|
1172 |
|
|
1173 |
|
|
1174 |
|
int alignmentRefs = 0; |
1175 |
|
|
1176 |
|
|
1177 |
|
|
1178 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1179 |
642 |
private void addAlignmentRef()... |
1180 |
|
{ |
1181 |
642 |
alignmentRefs++; |
1182 |
|
} |
1183 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1184 |
2894 |
@Override... |
1185 |
|
public Alignment getDataset() |
1186 |
|
{ |
1187 |
2894 |
return dataset; |
1188 |
|
} |
1189 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (33) |
Complexity: 8 |
Complexity Density: 0.38 |
|
1190 |
523 |
@Override... |
1191 |
|
public boolean padGaps() |
1192 |
|
{ |
1193 |
523 |
boolean modified = false; |
1194 |
|
|
1195 |
|
|
1196 |
523 |
int maxLength = -1; |
1197 |
|
|
1198 |
523 |
SequenceI current; |
1199 |
523 |
int nseq = sequences.size(); |
1200 |
4236 |
for (int i = 0; i < nseq; i++) |
1201 |
|
{ |
1202 |
3713 |
current = getSequenceAt(i); |
1203 |
9660 |
for (int j = current.getLength(); j > maxLength; j--) |
1204 |
|
{ |
1205 |
6671 |
if (j > maxLength |
1206 |
|
&& !jalview.util.Comparison.isGap(current.getCharAt(j))) |
1207 |
|
{ |
1208 |
724 |
maxLength = j; |
1209 |
724 |
break; |
1210 |
|
} |
1211 |
|
} |
1212 |
|
} |
1213 |
|
|
1214 |
523 |
maxLength++; |
1215 |
|
|
1216 |
523 |
int cLength; |
1217 |
4236 |
for (int i = 0; i < nseq; i++) |
1218 |
|
{ |
1219 |
3713 |
current = getSequenceAt(i); |
1220 |
3713 |
cLength = current.getLength(); |
1221 |
|
|
1222 |
3713 |
if (cLength < maxLength) |
1223 |
|
{ |
1224 |
76 |
current.insertCharAt(cLength, maxLength - cLength, gapCharacter); |
1225 |
76 |
modified = true; |
1226 |
|
} |
1227 |
3637 |
else if (current.getLength() > maxLength) |
1228 |
|
{ |
1229 |
2 |
current.deleteChars(maxLength, current.getLength()); |
1230 |
|
} |
1231 |
|
} |
1232 |
523 |
return modified; |
1233 |
|
} |
1234 |
|
|
1235 |
|
|
1236 |
|
|
1237 |
|
|
1238 |
|
|
1239 |
|
@param |
1240 |
|
|
1241 |
|
@return |
1242 |
|
|
|
|
| 0% |
Uncovered Elements: 72 (72) |
Complexity: 14 |
Complexity Density: 0.3 |
|
1243 |
0 |
@Override... |
1244 |
|
public boolean justify(boolean right) |
1245 |
|
{ |
1246 |
0 |
boolean modified = false; |
1247 |
|
|
1248 |
|
|
1249 |
0 |
int maxLength = -1; |
1250 |
0 |
int ends[] = new int[sequences.size() * 2]; |
1251 |
0 |
SequenceI current; |
1252 |
0 |
for (int i = 0; i < sequences.size(); i++) |
1253 |
|
{ |
1254 |
0 |
current = getSequenceAt(i); |
1255 |
|
|
1256 |
0 |
ends[i * 2] = current.findIndex(current.getStart()); |
1257 |
0 |
ends[i * 2 + 1] = current |
1258 |
|
.findIndex(current.getStart() + current.getLength()); |
1259 |
0 |
boolean hitres = false; |
1260 |
0 |
for (int j = 0, rs = 0, ssiz = current.getLength(); j < ssiz; j++) |
1261 |
|
{ |
1262 |
0 |
if (!jalview.util.Comparison.isGap(current.getCharAt(j))) |
1263 |
|
{ |
1264 |
0 |
if (!hitres) |
1265 |
|
{ |
1266 |
0 |
ends[i * 2] = j; |
1267 |
0 |
hitres = true; |
1268 |
|
} |
1269 |
|
else |
1270 |
|
{ |
1271 |
0 |
ends[i * 2 + 1] = j; |
1272 |
0 |
if (j - ends[i * 2] > maxLength) |
1273 |
|
{ |
1274 |
0 |
maxLength = j - ends[i * 2]; |
1275 |
|
} |
1276 |
|
} |
1277 |
|
} |
1278 |
|
} |
1279 |
|
} |
1280 |
|
|
1281 |
0 |
maxLength++; |
1282 |
|
|
1283 |
0 |
int cLength, extent, diff; |
1284 |
0 |
for (int i = 0; i < sequences.size(); i++) |
1285 |
|
{ |
1286 |
0 |
current = getSequenceAt(i); |
1287 |
|
|
1288 |
0 |
cLength = 1 + ends[i * 2 + 1] - ends[i * 2]; |
1289 |
0 |
diff = maxLength - cLength; |
1290 |
0 |
extent = current.getLength(); |
1291 |
0 |
if (right) |
1292 |
|
{ |
1293 |
|
|
1294 |
0 |
if (extent > ends[i * 2 + 1]) |
1295 |
|
{ |
1296 |
0 |
current.deleteChars(ends[i * 2 + 1] + 1, extent); |
1297 |
0 |
modified = true; |
1298 |
|
} |
1299 |
0 |
if (ends[i * 2] > diff) |
1300 |
|
{ |
1301 |
0 |
current.deleteChars(0, ends[i * 2] - diff); |
1302 |
0 |
modified = true; |
1303 |
|
} |
1304 |
|
else |
1305 |
|
{ |
1306 |
0 |
if (ends[i * 2] < diff) |
1307 |
|
{ |
1308 |
0 |
current.insertCharAt(0, diff - ends[i * 2], gapCharacter); |
1309 |
0 |
modified = true; |
1310 |
|
} |
1311 |
|
} |
1312 |
|
} |
1313 |
|
else |
1314 |
|
{ |
1315 |
|
|
1316 |
0 |
if (ends[i * 2] > 0) |
1317 |
|
{ |
1318 |
0 |
current.deleteChars(0, ends[i * 2]); |
1319 |
0 |
modified = true; |
1320 |
0 |
ends[i * 2 + 1] -= ends[i * 2]; |
1321 |
0 |
extent -= ends[i * 2]; |
1322 |
|
} |
1323 |
0 |
if (extent > maxLength) |
1324 |
|
{ |
1325 |
0 |
current.deleteChars(maxLength + 1, extent); |
1326 |
0 |
modified = true; |
1327 |
|
} |
1328 |
|
else |
1329 |
|
{ |
1330 |
0 |
if (extent < maxLength) |
1331 |
|
{ |
1332 |
0 |
current.insertCharAt(extent, maxLength - extent, gapCharacter); |
1333 |
0 |
modified = true; |
1334 |
|
} |
1335 |
|
} |
1336 |
|
} |
1337 |
|
} |
1338 |
0 |
return modified; |
1339 |
|
} |
1340 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1341 |
16862 |
@Override... |
1342 |
|
public HiddenSequences getHiddenSequences() |
1343 |
|
{ |
1344 |
16862 |
return hiddenSequences; |
1345 |
|
} |
1346 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1347 |
25635 |
@Override... |
1348 |
|
public HiddenColumns getHiddenColumns() |
1349 |
|
{ |
1350 |
25635 |
return hiddenCols; |
1351 |
|
} |
1352 |
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 1 |
Complexity Density: 0.12 |
|
1353 |
0 |
@Override... |
1354 |
|
public CigarArray getCompactAlignment() |
1355 |
|
{ |
1356 |
0 |
synchronized (sequences) |
1357 |
|
{ |
1358 |
0 |
SeqCigar alseqs[] = new SeqCigar[sequences.size()]; |
1359 |
0 |
int i = 0; |
1360 |
0 |
for (SequenceI seq : sequences) |
1361 |
|
{ |
1362 |
0 |
alseqs[i++] = new SeqCigar(seq); |
1363 |
|
} |
1364 |
0 |
CigarArray cal = new CigarArray(alseqs); |
1365 |
0 |
cal.addOperation(CigarArray.M, getWidth()); |
1366 |
0 |
return cal; |
1367 |
|
} |
1368 |
|
} |
1369 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1370 |
143 |
@Override... |
1371 |
|
public void setProperty(Object key, Object value) |
1372 |
|
{ |
1373 |
143 |
if (alignmentProperties == null) |
1374 |
|
{ |
1375 |
15 |
alignmentProperties = new Hashtable(); |
1376 |
|
} |
1377 |
|
|
1378 |
143 |
alignmentProperties.put(key, value); |
1379 |
|
} |
1380 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1381 |
0 |
@Override... |
1382 |
|
public Object getProperty(Object key) |
1383 |
|
{ |
1384 |
0 |
if (alignmentProperties != null) |
1385 |
|
{ |
1386 |
0 |
return alignmentProperties.get(key); |
1387 |
|
} |
1388 |
|
else |
1389 |
|
{ |
1390 |
0 |
return null; |
1391 |
|
} |
1392 |
|
} |
1393 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1394 |
361 |
@Override... |
1395 |
|
public Hashtable getProperties() |
1396 |
|
{ |
1397 |
361 |
return alignmentProperties; |
1398 |
|
} |
1399 |
|
|
1400 |
|
|
1401 |
|
|
1402 |
|
|
1403 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 4 |
Complexity Density: 1.33 |
|
1404 |
81 |
@Override... |
1405 |
|
public void addCodonFrame(AlignedCodonFrame codons) |
1406 |
|
{ |
1407 |
81 |
List<AlignedCodonFrame> acfs = getCodonFrames(); |
1408 |
81 |
if (codons != null && acfs != null && !acfs.contains(codons)) |
1409 |
|
{ |
1410 |
78 |
acfs.add(codons); |
1411 |
|
} |
1412 |
|
} |
1413 |
|
|
1414 |
|
|
1415 |
|
|
1416 |
|
|
1417 |
|
@see |
1418 |
|
|
1419 |
|
|
|
|
| 81.8% |
Uncovered Elements: 2 (11) |
Complexity: 3 |
Complexity Density: 0.43 |
|
1420 |
53 |
@Override... |
1421 |
|
public List<AlignedCodonFrame> getCodonFrame(SequenceI seq) |
1422 |
|
{ |
1423 |
53 |
if (seq == null) |
1424 |
|
{ |
1425 |
0 |
return null; |
1426 |
|
} |
1427 |
53 |
List<AlignedCodonFrame> cframes = new ArrayList<>(); |
1428 |
53 |
for (AlignedCodonFrame acf : getCodonFrames()) |
1429 |
|
{ |
1430 |
105 |
if (acf.involvesSequence(seq)) |
1431 |
|
{ |
1432 |
46 |
cframes.add(acf); |
1433 |
|
} |
1434 |
|
} |
1435 |
53 |
return cframes; |
1436 |
|
} |
1437 |
|
|
1438 |
|
|
1439 |
|
|
1440 |
|
|
1441 |
|
|
1442 |
|
@see |
1443 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1444 |
52 |
@Override... |
1445 |
|
public void setCodonFrames(List<AlignedCodonFrame> acfs) |
1446 |
|
{ |
1447 |
52 |
if (dataset != null) |
1448 |
|
{ |
1449 |
24 |
dataset.setCodonFrames(acfs); |
1450 |
|
} |
1451 |
|
else |
1452 |
|
{ |
1453 |
28 |
this.codonFrameList = acfs; |
1454 |
|
} |
1455 |
|
} |
1456 |
|
|
1457 |
|
|
1458 |
|
|
1459 |
|
|
1460 |
|
|
1461 |
|
|
1462 |
|
@see |
1463 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
1464 |
6477 |
@Override... |
1465 |
|
public List<AlignedCodonFrame> getCodonFrames() |
1466 |
|
{ |
1467 |
|
|
1468 |
|
|
1469 |
|
|
1470 |
|
|
1471 |
6477 |
return dataset != null ? dataset.getCodonFrames() : codonFrameList; |
1472 |
|
} |
1473 |
|
|
1474 |
|
|
1475 |
|
|
1476 |
|
|
1477 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 3 |
Complexity Density: 0.75 |
|
1478 |
0 |
@Override... |
1479 |
|
public boolean removeCodonFrame(AlignedCodonFrame codons) |
1480 |
|
{ |
1481 |
0 |
List<AlignedCodonFrame> acfs = getCodonFrames(); |
1482 |
0 |
if (codons == null || acfs == null) |
1483 |
|
{ |
1484 |
0 |
return false; |
1485 |
|
} |
1486 |
0 |
return acfs.remove(codons); |
1487 |
|
} |
1488 |
|
|
|
|
| 42.3% |
Uncovered Elements: 45 (78) |
Complexity: 20 |
Complexity Density: 0.45 |
|
1489 |
1 |
@Override... |
1490 |
|
public void append(AlignmentI toappend) |
1491 |
|
{ |
1492 |
|
|
1493 |
|
|
1494 |
1 |
char oldc = toappend.getGapCharacter(); |
1495 |
1 |
boolean samegap = oldc == getGapCharacter(); |
1496 |
1 |
boolean hashidden = toappend.getHiddenSequences() != null |
1497 |
|
&& toappend.getHiddenSequences().hiddenSequences != null; |
1498 |
|
|
1499 |
1 |
List<SequenceI> sqs = (hashidden) |
1500 |
|
? toappend.getHiddenSequences().getFullAlignment() |
1501 |
|
.getSequences() |
1502 |
|
: toappend.getSequences(); |
1503 |
1 |
if (sqs != null) |
1504 |
|
{ |
1505 |
|
|
1506 |
1 |
List<SequenceI> toappendsq = new ArrayList<>(); |
1507 |
1 |
synchronized (sqs) |
1508 |
|
{ |
1509 |
1 |
for (SequenceI addedsq : sqs) |
1510 |
|
{ |
1511 |
1 |
if (!samegap) |
1512 |
|
{ |
1513 |
1 |
addedsq.replace(oldc, gapCharacter); |
1514 |
|
} |
1515 |
1 |
toappendsq.add(addedsq); |
1516 |
|
} |
1517 |
|
} |
1518 |
1 |
for (SequenceI addedsq : toappendsq) |
1519 |
|
{ |
1520 |
1 |
addSequence(addedsq); |
1521 |
|
} |
1522 |
|
} |
1523 |
1 |
AlignmentAnnotation[] alan = toappend.getAlignmentAnnotation(); |
1524 |
1 |
for (int a = 0; alan != null && a < alan.length; a++) |
1525 |
|
{ |
1526 |
0 |
addAnnotation(alan[a]); |
1527 |
|
} |
1528 |
|
|
1529 |
|
|
1530 |
1 |
getCodonFrames().addAll(toappend.getCodonFrames()); |
1531 |
|
|
1532 |
1 |
List<SequenceGroup> sg = toappend.getGroups(); |
1533 |
1 |
if (sg != null) |
1534 |
|
{ |
1535 |
1 |
for (SequenceGroup _sg : sg) |
1536 |
|
{ |
1537 |
0 |
addGroup(_sg); |
1538 |
|
} |
1539 |
|
} |
1540 |
1 |
if (toappend.getHiddenSequences() != null) |
1541 |
|
{ |
1542 |
1 |
HiddenSequences hs = toappend.getHiddenSequences(); |
1543 |
1 |
if (hiddenSequences == null) |
1544 |
|
{ |
1545 |
0 |
hiddenSequences = new HiddenSequences(this); |
1546 |
|
} |
1547 |
1 |
if (hs.hiddenSequences != null) |
1548 |
|
{ |
1549 |
0 |
for (int s = 0; s < hs.hiddenSequences.length; s++) |
1550 |
|
{ |
1551 |
|
|
1552 |
0 |
if (hs.hiddenSequences[s] != null) |
1553 |
|
{ |
1554 |
0 |
hiddenSequences.hideSequence(hs.hiddenSequences[s]); |
1555 |
|
} |
1556 |
|
} |
1557 |
|
} |
1558 |
|
} |
1559 |
1 |
if (toappend.getProperties() != null) |
1560 |
|
{ |
1561 |
|
|
1562 |
|
|
1563 |
0 |
Enumeration key = toappend.getProperties().keys(); |
1564 |
0 |
while (key.hasMoreElements()) |
1565 |
|
{ |
1566 |
0 |
Object k = key.nextElement(); |
1567 |
0 |
Object ourval = this.getProperty(k); |
1568 |
0 |
Object toapprop = toappend.getProperty(k); |
1569 |
0 |
if (ourval != null) |
1570 |
|
{ |
1571 |
0 |
if (ourval.getClass().equals(toapprop.getClass()) |
1572 |
|
&& !ourval.equals(toapprop)) |
1573 |
|
{ |
1574 |
0 |
if (ourval instanceof String) |
1575 |
|
{ |
1576 |
|
|
1577 |
0 |
this.setProperty(k, |
1578 |
|
((String) ourval) + "; " + ((String) toapprop)); |
1579 |
|
} |
1580 |
|
else |
1581 |
|
{ |
1582 |
0 |
if (ourval instanceof Vector) |
1583 |
|
{ |
1584 |
|
|
1585 |
0 |
Enumeration theirv = ((Vector) toapprop).elements(); |
1586 |
0 |
while (theirv.hasMoreElements()) |
1587 |
|
{ |
1588 |
0 |
((Vector) ourval).addElement(theirv); |
1589 |
|
} |
1590 |
|
} |
1591 |
|
} |
1592 |
|
} |
1593 |
|
} |
1594 |
|
else |
1595 |
|
{ |
1596 |
|
|
1597 |
0 |
setProperty(k, toapprop); |
1598 |
|
} |
1599 |
|
|
1600 |
|
} |
1601 |
|
} |
1602 |
|
} |
1603 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (22) |
Complexity: 10 |
Complexity Density: 0.71 |
|
1604 |
19 |
@Override... |
1605 |
|
public AlignmentAnnotation findOrCreateAnnotation(String name, |
1606 |
|
String calcId, boolean autoCalc, SequenceI seqRef, |
1607 |
|
SequenceGroup groupRef) |
1608 |
|
{ |
1609 |
19 |
if (annotations != null) |
1610 |
|
{ |
1611 |
18 |
for (AlignmentAnnotation annot : getAlignmentAnnotation()) |
1612 |
|
{ |
1613 |
189 |
if (annot.autoCalculated == autoCalc && (name.equals(annot.label)) |
1614 |
|
&& (calcId == null || annot.getCalcId().equals(calcId)) |
1615 |
|
&& annot.sequenceRef == seqRef |
1616 |
|
&& annot.groupRef == groupRef) |
1617 |
|
{ |
1618 |
1 |
return annot; |
1619 |
|
} |
1620 |
|
} |
1621 |
|
} |
1622 |
18 |
AlignmentAnnotation annot = new AlignmentAnnotation(name, name, |
1623 |
|
new Annotation[1], 0f, 0f, AlignmentAnnotation.BAR_GRAPH); |
1624 |
18 |
annot.hasText = false; |
1625 |
18 |
if (calcId != null) |
1626 |
|
{ |
1627 |
17 |
annot.setCalcId(new String(calcId)); |
1628 |
|
} |
1629 |
18 |
annot.autoCalculated = autoCalc; |
1630 |
18 |
if (seqRef != null) |
1631 |
|
{ |
1632 |
16 |
annot.setSequenceRef(seqRef); |
1633 |
|
} |
1634 |
18 |
annot.groupRef = groupRef; |
1635 |
18 |
addAnnotation(annot); |
1636 |
|
|
1637 |
18 |
return annot; |
1638 |
|
} |
1639 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
1640 |
498 |
@Override... |
1641 |
|
public Iterable<AlignmentAnnotation> findAnnotation(String calcId) |
1642 |
|
{ |
1643 |
498 |
AlignmentAnnotation[] alignmentAnnotation = getAlignmentAnnotation(); |
1644 |
498 |
if (alignmentAnnotation != null) |
1645 |
|
{ |
1646 |
489 |
return AlignmentAnnotation.findAnnotation( |
1647 |
|
Arrays.asList(getAlignmentAnnotation()), calcId); |
1648 |
|
} |
1649 |
9 |
return Arrays.asList(new AlignmentAnnotation[] {}); |
1650 |
|
} |
1651 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
1652 |
166 |
@Override... |
1653 |
|
public Iterable<AlignmentAnnotation> findAnnotations(SequenceI seq, |
1654 |
|
String calcId, String label) |
1655 |
|
{ |
1656 |
166 |
return annotations == null ? null |
1657 |
|
: AlignmentAnnotation.findAnnotations( |
1658 |
|
Arrays.asList(getAlignmentAnnotation()), seq, calcId, |
1659 |
|
label); |
1660 |
|
} |
1661 |
|
|
|
|
| 0% |
Uncovered Elements: 34 (34) |
Complexity: 8 |
Complexity Density: 0.4 |
|
1662 |
0 |
@Override... |
1663 |
|
public void moveSelectedSequencesByOne(SequenceGroup sg, |
1664 |
|
Map<SequenceI, SequenceCollectionI> map, boolean up) |
1665 |
|
{ |
1666 |
0 |
synchronized (sequences) |
1667 |
|
{ |
1668 |
0 |
if (up) |
1669 |
|
{ |
1670 |
|
|
1671 |
0 |
for (int i = 1, iSize = sequences.size(); i < iSize; i++) |
1672 |
|
{ |
1673 |
0 |
SequenceI seq = sequences.get(i); |
1674 |
0 |
if (!sg.getSequences(map).contains(seq)) |
1675 |
|
{ |
1676 |
0 |
continue; |
1677 |
|
} |
1678 |
|
|
1679 |
0 |
SequenceI temp = sequences.get(i - 1); |
1680 |
0 |
if (sg.getSequences(null).contains(temp)) |
1681 |
|
{ |
1682 |
0 |
continue; |
1683 |
|
} |
1684 |
|
|
1685 |
0 |
sequences.set(i, temp); |
1686 |
0 |
sequences.set(i - 1, seq); |
1687 |
|
} |
1688 |
|
} |
1689 |
|
else |
1690 |
|
{ |
1691 |
0 |
for (int i = sequences.size() - 2; i > -1; i--) |
1692 |
|
{ |
1693 |
0 |
SequenceI seq = sequences.get(i); |
1694 |
0 |
if (!sg.getSequences(map).contains(seq)) |
1695 |
|
{ |
1696 |
0 |
continue; |
1697 |
|
} |
1698 |
|
|
1699 |
0 |
SequenceI temp = sequences.get(i + 1); |
1700 |
0 |
if (sg.getSequences(map).contains(temp)) |
1701 |
|
{ |
1702 |
0 |
continue; |
1703 |
|
} |
1704 |
|
|
1705 |
0 |
sequences.set(i, temp); |
1706 |
0 |
sequences.set(i + 1, seq); |
1707 |
|
} |
1708 |
|
} |
1709 |
|
|
1710 |
|
} |
1711 |
|
} |
1712 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 3 |
Complexity Density: 1 |
|
1713 |
0 |
@Override... |
1714 |
|
public void validateAnnotation(AlignmentAnnotation alignmentAnnotation) |
1715 |
|
{ |
1716 |
0 |
alignmentAnnotation.validateRangeAndDisplay(); |
1717 |
0 |
if (isNucleotide() && alignmentAnnotation.isValidStruc()) |
1718 |
|
{ |
1719 |
0 |
hasRNAStructure = true; |
1720 |
|
} |
1721 |
|
} |
1722 |
|
|
1723 |
|
private SequenceI seqrep = null; |
1724 |
|
|
1725 |
|
|
1726 |
|
|
1727 |
|
@return |
1728 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1729 |
18568 |
@Override... |
1730 |
|
public SequenceI getSeqrep() |
1731 |
|
{ |
1732 |
18568 |
return seqrep; |
1733 |
|
} |
1734 |
|
|
1735 |
|
|
1736 |
|
|
1737 |
|
|
1738 |
|
|
1739 |
|
@param |
1740 |
|
|
1741 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1742 |
200 |
@Override... |
1743 |
|
public void setSeqrep(SequenceI seqrep) |
1744 |
|
{ |
1745 |
200 |
this.seqrep = seqrep; |
1746 |
|
} |
1747 |
|
|
1748 |
|
|
1749 |
|
|
1750 |
|
@return |
1751 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1752 |
19112 |
@Override... |
1753 |
|
public boolean hasSeqrep() |
1754 |
|
{ |
1755 |
19112 |
return seqrep != null; |
1756 |
|
} |
1757 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1758 |
31 |
@Override... |
1759 |
|
public int getEndRes() |
1760 |
|
{ |
1761 |
31 |
return getWidth() - 1; |
1762 |
|
} |
1763 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1764 |
31 |
@Override... |
1765 |
|
public int getStartRes() |
1766 |
|
{ |
1767 |
31 |
return 0; |
1768 |
|
} |
1769 |
|
|
1770 |
|
|
1771 |
|
|
1772 |
|
|
1773 |
|
|
1774 |
|
@see |
1775 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1776 |
476 |
@Override... |
1777 |
|
public AnnotatedCollectionI getContext() |
1778 |
|
{ |
1779 |
476 |
return dataset; |
1780 |
|
} |
1781 |
|
|
1782 |
|
|
1783 |
|
|
1784 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1785 |
4 |
@Override... |
1786 |
|
public int alignAs(AlignmentI al) |
1787 |
|
{ |
1788 |
|
|
1789 |
|
|
1790 |
|
|
1791 |
|
|
1792 |
4 |
return alignAs(al, false, true); |
1793 |
|
} |
1794 |
|
|
1795 |
|
|
1796 |
|
|
1797 |
|
|
1798 |
|
|
1799 |
|
|
1800 |
|
|
1801 |
|
|
1802 |
|
|
1803 |
|
|
1804 |
|
|
1805 |
|
|
1806 |
|
|
1807 |
|
|
1808 |
|
|
1809 |
|
@param |
1810 |
|
|
1811 |
|
|
1812 |
|
@param |
1813 |
|
|
1814 |
|
@param |
1815 |
|
|
1816 |
|
|
1817 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (11) |
Complexity: 5 |
Complexity Density: 0.71 |
|
1818 |
10 |
public int alignAs(AlignmentI al, boolean preserveMappedGaps,... |
1819 |
|
boolean preserveUnmappedGaps) |
1820 |
|
{ |
1821 |
|
|
1822 |
|
|
1823 |
10 |
boolean thisIsNucleotide = this.isNucleotide(); |
1824 |
10 |
boolean thatIsProtein = !al.isNucleotide(); |
1825 |
10 |
if (!thatIsProtein && !thisIsNucleotide) |
1826 |
|
{ |
1827 |
3 |
return AlignmentUtils.alignProteinAsDna(this, al); |
1828 |
|
} |
1829 |
7 |
else if (thatIsProtein && thisIsNucleotide) |
1830 |
|
{ |
1831 |
4 |
return AlignmentUtils.alignCdsAsProtein(this, al); |
1832 |
|
} |
1833 |
3 |
return AlignmentUtils.alignAs(this, al); |
1834 |
|
} |
1835 |
|
|
1836 |
|
|
1837 |
|
|
1838 |
|
|
1839 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1840 |
3 |
@Override... |
1841 |
|
public String toString() |
1842 |
|
{ |
1843 |
3 |
return new FastaFile().print(getSequencesArray(), true); |
1844 |
|
} |
1845 |
|
|
1846 |
|
|
1847 |
|
|
1848 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
1849 |
44 |
@Override... |
1850 |
|
public Set<String> getSequenceNames() |
1851 |
|
{ |
1852 |
44 |
Set<String> names = new HashSet<>(); |
1853 |
44 |
for (SequenceI seq : getSequences()) |
1854 |
|
{ |
1855 |
420 |
names.add(seq.getName()); |
1856 |
|
} |
1857 |
44 |
return names; |
1858 |
|
} |
1859 |
|
|
|
|
| 87.5% |
Uncovered Elements: 1 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
1860 |
316 |
@Override... |
1861 |
|
public boolean hasValidSequence() |
1862 |
|
{ |
1863 |
316 |
boolean hasValidSeq = false; |
1864 |
316 |
for (SequenceI seq : getSequences()) |
1865 |
|
{ |
1866 |
316 |
if ((seq.getEnd() - seq.getStart()) > 0) |
1867 |
|
{ |
1868 |
316 |
hasValidSeq = true; |
1869 |
316 |
break; |
1870 |
|
} |
1871 |
|
} |
1872 |
316 |
return hasValidSeq; |
1873 |
|
} |
1874 |
|
|
1875 |
|
|
1876 |
|
|
1877 |
|
|
1878 |
|
|
1879 |
|
@param |
1880 |
|
@return |
1881 |
|
|
|
|
| 80% |
Uncovered Elements: 1 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
1882 |
21 |
@Override... |
1883 |
|
public int realiseMappings(List<SequenceI> seqs) |
1884 |
|
{ |
1885 |
21 |
int count = 0; |
1886 |
21 |
for (SequenceI seq : seqs) |
1887 |
|
{ |
1888 |
58 |
for (AlignedCodonFrame mapping : getCodonFrames()) |
1889 |
|
{ |
1890 |
0 |
count += mapping.realiseWith(seq); |
1891 |
|
} |
1892 |
|
} |
1893 |
21 |
return count; |
1894 |
|
} |
1895 |
|
|
1896 |
|
|
1897 |
|
|
1898 |
|
|
1899 |
|
|
1900 |
|
@param |
1901 |
|
@param |
1902 |
|
@return |
1903 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
1904 |
38 |
@Override... |
1905 |
|
public AlignedCodonFrame getMapping(SequenceI mapFrom, SequenceI mapTo) |
1906 |
|
{ |
1907 |
38 |
for (AlignedCodonFrame acf : getCodonFrames()) |
1908 |
|
{ |
1909 |
13 |
if (acf.getAaForDnaSeq(mapFrom) == mapTo) |
1910 |
|
{ |
1911 |
12 |
return acf; |
1912 |
|
} |
1913 |
|
} |
1914 |
26 |
return null; |
1915 |
|
} |
1916 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1917 |
42 |
@Override... |
1918 |
|
public boolean setHiddenColumns(HiddenColumns cols) |
1919 |
|
{ |
1920 |
42 |
boolean changed = cols == null ? hiddenCols != null |
1921 |
|
: !cols.equals(hiddenCols); |
1922 |
42 |
hiddenCols = cols; |
1923 |
42 |
return changed; |
1924 |
|
} |
1925 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
1926 |
0 |
@Override... |
1927 |
|
public void setupJPredAlignment() |
1928 |
|
{ |
1929 |
0 |
SequenceI repseq = getSequenceAt(0); |
1930 |
0 |
setSeqrep(repseq); |
1931 |
0 |
HiddenColumns cs = new HiddenColumns(); |
1932 |
0 |
cs.hideList(repseq.getInsertions()); |
1933 |
0 |
setHiddenColumns(cs); |
1934 |
|
} |
1935 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 1 |
Complexity Density: 0.17 |
|
1936 |
2 |
@Override... |
1937 |
|
public HiddenColumns propagateInsertions(SequenceI profileseq, |
1938 |
|
AlignmentView input) |
1939 |
|
{ |
1940 |
2 |
int profsqpos = 0; |
1941 |
|
|
1942 |
2 |
char gc = getGapCharacter(); |
1943 |
2 |
Object[] alandhidden = input.getAlignmentAndHiddenColumns(gc); |
1944 |
2 |
HiddenColumns nview = (HiddenColumns) alandhidden[1]; |
1945 |
2 |
SequenceI origseq = ((SequenceI[]) alandhidden[0])[profsqpos]; |
1946 |
2 |
return propagateInsertions(profileseq, origseq, nview); |
1947 |
|
} |
1948 |
|
|
1949 |
|
|
1950 |
|
|
1951 |
|
@param |
1952 |
|
|
1953 |
|
@param |
1954 |
|
|
1955 |
|
@param |
1956 |
|
|
1957 |
|
|
1958 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (23) |
Complexity: 4 |
Complexity Density: 0.24 |
|
1959 |
2 |
private HiddenColumns propagateInsertions(SequenceI profileseq,... |
1960 |
|
SequenceI origseq, HiddenColumns hc) |
1961 |
|
{ |
1962 |
|
|
1963 |
|
|
1964 |
|
|
1965 |
|
|
1966 |
|
|
1967 |
2 |
BitSet gaps = origseq.gapBitset(); |
1968 |
2 |
hc.andNot(gaps); |
1969 |
|
|
1970 |
|
|
1971 |
|
|
1972 |
|
|
1973 |
|
|
1974 |
2 |
HiddenColumns newhidden = new HiddenColumns(); |
1975 |
|
|
1976 |
2 |
int numGapsBefore = 0; |
1977 |
2 |
int gapPosition = 0; |
1978 |
2 |
Iterator<int[]> it = hc.iterator(); |
1979 |
4 |
while (it.hasNext()) |
1980 |
|
{ |
1981 |
2 |
int[] region = it.next(); |
1982 |
|
|
1983 |
|
|
1984 |
|
|
1985 |
|
|
1986 |
26 |
while (gapPosition < region[0]) |
1987 |
|
{ |
1988 |
24 |
gapPosition++; |
1989 |
24 |
if (gaps.get(gapPosition)) |
1990 |
|
{ |
1991 |
8 |
numGapsBefore++; |
1992 |
|
} |
1993 |
|
} |
1994 |
|
|
1995 |
2 |
int left = region[0] - numGapsBefore; |
1996 |
2 |
int right = region[1] - numGapsBefore; |
1997 |
|
|
1998 |
2 |
newhidden.hideColumns(left, right); |
1999 |
2 |
padGaps(left, right, profileseq); |
2000 |
|
} |
2001 |
2 |
return newhidden; |
2002 |
|
} |
2003 |
|
|
2004 |
|
|
2005 |
|
|
2006 |
|
|
2007 |
|
@param |
2008 |
|
|
2009 |
|
@param |
2010 |
|
|
2011 |
|
@param |
2012 |
|
|
2013 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (15) |
Complexity: 5 |
Complexity Density: 0.56 |
|
2014 |
2 |
private void padGaps(int left, int right, SequenceI profileseq)... |
2015 |
|
{ |
2016 |
2 |
char gc = getGapCharacter(); |
2017 |
|
|
2018 |
|
|
2019 |
2 |
StringBuilder sb = new StringBuilder(); |
2020 |
7 |
for (int g = 0; g < right - left + 1; g++) |
2021 |
|
{ |
2022 |
5 |
sb.append(gc); |
2023 |
|
} |
2024 |
|
|
2025 |
|
|
2026 |
22 |
for (int s = 0, ns = getHeight(); s < ns; s++) |
2027 |
|
{ |
2028 |
20 |
SequenceI sqobj = getSequenceAt(s); |
2029 |
20 |
if ((sqobj != profileseq) && (sqobj.getLength() >= left)) |
2030 |
|
{ |
2031 |
15 |
String sq = sqobj.getSequenceAsString(); |
2032 |
15 |
sqobj.setSequence( |
2033 |
|
sq.substring(0, left) + sb.toString() + sq.substring(left)); |
2034 |
|
} |
2035 |
|
} |
2036 |
|
} |
2037 |
|
|
2038 |
|
|
2039 |
|
|
2040 |
|
|
2041 |
|
ContactMapHolder cmholder = new ContactMapHolder(); |
2042 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2043 |
21 |
@Override... |
2044 |
|
public Collection<ContactMatrixI> getContactMaps() |
2045 |
|
{ |
2046 |
21 |
return cmholder.getContactMaps(); |
2047 |
|
} |
2048 |
|
|
|
|
| 64.3% |
Uncovered Elements: 5 (14) |
Complexity: 7 |
Complexity Density: 0.88 |
|
2049 |
138 |
@Override... |
2050 |
|
public ContactMatrixI getContactMatrixFor(AlignmentAnnotation _aa) |
2051 |
|
{ |
2052 |
138 |
ContactMatrixI cm = cmholder.getContactMatrixFor(_aa); |
2053 |
138 |
if (cm == null && _aa.groupRef != null) |
2054 |
|
{ |
2055 |
0 |
cm = _aa.groupRef.getContactMatrixFor(_aa); |
2056 |
|
} |
2057 |
138 |
if (cm == null && _aa.sequenceRef != null) |
2058 |
|
{ |
2059 |
138 |
cm = _aa.sequenceRef.getContactMatrixFor(_aa); |
2060 |
138 |
if (cm == null && _aa.sequenceRef.getDatasetSequence() != null) |
2061 |
|
{ |
2062 |
|
|
2063 |
0 |
cm = _aa.sequenceRef.getDatasetSequence().getContactMatrixFor(_aa); |
2064 |
|
} |
2065 |
|
} |
2066 |
138 |
return cm; |
2067 |
|
} |
2068 |
|
|
|
|
| 60% |
Uncovered Elements: 10 (25) |
Complexity: 13 |
Complexity Density: 1 |
|
2069 |
3362 |
@Override... |
2070 |
|
public ContactListI getContactListFor(AlignmentAnnotation _aa, int column) |
2071 |
|
{ |
2072 |
3362 |
if (_aa.annotations == null || column >= _aa.annotations.length |
2073 |
|
|| column < 0) |
2074 |
|
{ |
2075 |
1 |
return null; |
2076 |
|
} |
2077 |
3361 |
ContactListI cl = cmholder.getContactListFor(_aa, column); |
2078 |
3361 |
if (cl == null && _aa.groupRef != null) |
2079 |
|
{ |
2080 |
0 |
cl = _aa.groupRef.getContactListFor(_aa, column); |
2081 |
|
} |
2082 |
3361 |
if (cl == null && _aa.sequenceRef != null) |
2083 |
|
{ |
2084 |
3361 |
if (_aa.annotations[column] != null) |
2085 |
|
{ |
2086 |
|
|
2087 |
3361 |
cl = _aa.sequenceRef.getContactListFor(_aa, column); |
2088 |
3361 |
if (cl == null && _aa.sequenceRef.getDatasetSequence() != null) |
2089 |
|
{ |
2090 |
0 |
int spos = _aa.sequenceRef.findPosition(column); |
2091 |
0 |
if (spos >= _aa.sequenceRef.getStart() |
2092 |
|
&& spos <= 1 + _aa.sequenceRef.getEnd()) |
2093 |
|
{ |
2094 |
0 |
cl = _aa.sequenceRef.getDatasetSequence().getContactListFor(_aa, |
2095 |
|
spos - _aa.sequenceRef.getStart()); |
2096 |
|
} |
2097 |
|
} |
2098 |
|
} |
2099 |
|
} |
2100 |
3361 |
return cl; |
2101 |
|
} |
2102 |
|
|
|
|
| 0% |
Uncovered Elements: 9 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
|
2103 |
0 |
@Override... |
2104 |
|
public AlignmentAnnotation addContactList(ContactMatrixI cm) |
2105 |
|
{ |
2106 |
0 |
AlignmentAnnotation aa = cmholder.addContactList(cm); |
2107 |
|
|
2108 |
0 |
Annotation _aa[] = new Annotation[getWidth()]; |
2109 |
0 |
for (int i = 0; i < _aa.length; _aa[i++] = new Annotation(0.0f)) |
2110 |
|
{ |
2111 |
0 |
; |
2112 |
|
} |
2113 |
0 |
aa.annotations = _aa; |
2114 |
0 |
addAnnotation(aa); |
2115 |
0 |
return aa; |
2116 |
|
} |
2117 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2118 |
0 |
@Override... |
2119 |
|
public void addContactListFor(AlignmentAnnotation annotation, |
2120 |
|
ContactMatrixI cm) |
2121 |
|
{ |
2122 |
0 |
cmholder.addContactListFor(annotation, cm); |
2123 |
|
|
2124 |
|
} |
2125 |
|
} |