1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.viewmodel; |
22 |
|
|
23 |
|
import java.awt.Color; |
24 |
|
import java.beans.PropertyChangeSupport; |
25 |
|
import java.util.ArrayDeque; |
26 |
|
import java.util.ArrayList; |
27 |
|
import java.util.BitSet; |
28 |
|
import java.util.Deque; |
29 |
|
import java.util.HashMap; |
30 |
|
import java.util.Hashtable; |
31 |
|
import java.util.Iterator; |
32 |
|
import java.util.List; |
33 |
|
import java.util.Map; |
34 |
|
|
35 |
|
import jalview.analysis.AnnotationSorter.SequenceAnnotationOrder; |
36 |
|
import jalview.analysis.Conservation; |
37 |
|
import jalview.analysis.TreeModel; |
38 |
|
import jalview.api.AlignCalcManagerI; |
39 |
|
import jalview.api.AlignExportSettingsI; |
40 |
|
import jalview.api.AlignViewportI; |
41 |
|
import jalview.api.AlignmentViewPanel; |
42 |
|
import jalview.api.FeaturesDisplayedI; |
43 |
|
import jalview.api.ViewStyleI; |
44 |
|
import jalview.bin.Console; |
45 |
|
import jalview.commands.CommandI; |
46 |
|
import jalview.datamodel.AlignedCodonFrame; |
47 |
|
import jalview.datamodel.AlignmentAnnotation; |
48 |
|
import jalview.datamodel.AlignmentExportData; |
49 |
|
import jalview.datamodel.AlignmentI; |
50 |
|
import jalview.datamodel.AlignmentView; |
51 |
|
import jalview.datamodel.Annotation; |
52 |
|
import jalview.datamodel.ColumnSelection; |
53 |
|
import jalview.datamodel.ContactListI; |
54 |
|
import jalview.datamodel.ContactMatrixI; |
55 |
|
import jalview.datamodel.HiddenColumns; |
56 |
|
import jalview.datamodel.HiddenSequences; |
57 |
|
import jalview.datamodel.ProfilesI; |
58 |
|
import jalview.datamodel.SearchResultsI; |
59 |
|
import jalview.datamodel.Sequence; |
60 |
|
import jalview.datamodel.SequenceCollectionI; |
61 |
|
import jalview.datamodel.SequenceGroup; |
62 |
|
import jalview.datamodel.SequenceI; |
63 |
|
import jalview.gui.QuitHandler; |
64 |
|
import jalview.project.Jalview2XML; |
65 |
|
import jalview.renderer.ResidueShader; |
66 |
|
import jalview.renderer.ResidueShaderI; |
67 |
|
import jalview.schemes.ColourSchemeI; |
68 |
|
import jalview.structure.CommandListener; |
69 |
|
import jalview.structure.StructureSelectionManager; |
70 |
|
import jalview.structure.VamsasSource; |
71 |
|
import jalview.util.Comparison; |
72 |
|
import jalview.util.MapList; |
73 |
|
import jalview.util.MappingUtils; |
74 |
|
import jalview.util.MessageManager; |
75 |
|
import jalview.viewmodel.styles.ViewStyle; |
76 |
|
import jalview.workers.AlignCalcManager; |
77 |
|
import jalview.workers.ComplementConsensusThread; |
78 |
|
import jalview.workers.ConsensusThread; |
79 |
|
import jalview.workers.SecondaryStructureConsensusThread; |
80 |
|
import jalview.workers.StrucConsensusThread; |
81 |
|
|
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
@author |
87 |
|
|
88 |
|
|
|
|
| 73.8% |
Uncovered Elements: 345 (1,318) |
Complexity: 460 |
Complexity Density: 0.62 |
|
89 |
|
public abstract class AlignmentViewport |
90 |
|
implements AlignViewportI, CommandListener, VamsasSource |
91 |
|
{ |
92 |
|
protected ViewportRanges ranges; |
93 |
|
|
94 |
|
protected ViewStyleI viewStyle = new ViewStyle(); |
95 |
|
|
96 |
|
|
97 |
|
|
98 |
|
|
99 |
|
|
100 |
|
AlignViewportI codingComplement = null; |
101 |
|
|
102 |
|
FeaturesDisplayedI featuresDisplayed = null; |
103 |
|
|
104 |
|
protected Deque<CommandI> historyList = new ArrayDeque<>(); |
105 |
|
|
106 |
|
protected Deque<CommandI> redoList = new ArrayDeque<>(); |
107 |
|
|
108 |
|
|
109 |
|
|
110 |
|
|
111 |
|
private boolean savedUpToDate = false; |
112 |
|
|
113 |
|
|
114 |
|
|
115 |
|
|
116 |
|
protected AlignmentI alignment; |
117 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
118 |
508 |
public AlignmentViewport(AlignmentI al)... |
119 |
|
{ |
120 |
508 |
setAlignment(al); |
121 |
508 |
ranges = new ViewportRanges(al); |
122 |
|
} |
123 |
|
|
124 |
|
|
125 |
|
@param |
126 |
|
@see |
127 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
128 |
0 |
@Override... |
129 |
|
public void setFontName(String name) |
130 |
|
{ |
131 |
0 |
viewStyle.setFontName(name); |
132 |
|
} |
133 |
|
|
134 |
|
|
135 |
|
@param |
136 |
|
@see |
137 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
138 |
0 |
@Override... |
139 |
|
public void setFontStyle(int style) |
140 |
|
{ |
141 |
0 |
viewStyle.setFontStyle(style); |
142 |
|
} |
143 |
|
|
144 |
|
|
145 |
|
@param |
146 |
|
@see |
147 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
148 |
0 |
@Override... |
149 |
|
public void setFontSize(int size) |
150 |
|
{ |
151 |
0 |
viewStyle.setFontSize(size); |
152 |
|
} |
153 |
|
|
154 |
|
|
155 |
|
@return |
156 |
|
@see |
157 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
158 |
0 |
@Override... |
159 |
|
public int getFontStyle() |
160 |
|
{ |
161 |
0 |
return viewStyle.getFontStyle(); |
162 |
|
} |
163 |
|
|
164 |
|
|
165 |
|
@return |
166 |
|
@see |
167 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
168 |
0 |
@Override... |
169 |
|
public String getFontName() |
170 |
|
{ |
171 |
0 |
return viewStyle.getFontName(); |
172 |
|
} |
173 |
|
|
174 |
|
|
175 |
|
@return |
176 |
|
@see |
177 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
178 |
0 |
@Override... |
179 |
|
public int getFontSize() |
180 |
|
{ |
181 |
0 |
return viewStyle.getFontSize(); |
182 |
|
} |
183 |
|
|
184 |
|
|
185 |
|
@param |
186 |
|
@see |
187 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
188 |
0 |
@Override... |
189 |
|
public void setUpperCasebold(boolean upperCasebold) |
190 |
|
{ |
191 |
0 |
viewStyle.setUpperCasebold(upperCasebold); |
192 |
|
} |
193 |
|
|
194 |
|
|
195 |
|
@return |
196 |
|
@see |
197 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
198 |
0 |
@Override... |
199 |
|
public boolean isUpperCasebold() |
200 |
|
{ |
201 |
0 |
return viewStyle.isUpperCasebold(); |
202 |
|
} |
203 |
|
|
204 |
|
|
205 |
|
@return |
206 |
|
@see |
207 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
208 |
4000 |
@Override... |
209 |
|
public boolean isSeqNameItalics() |
210 |
|
{ |
211 |
4000 |
return viewStyle.isSeqNameItalics(); |
212 |
|
} |
213 |
|
|
214 |
|
|
215 |
|
@param |
216 |
|
@see |
217 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
218 |
10 |
@Override... |
219 |
|
public void setColourByReferenceSeq(boolean colourByReferenceSeq) |
220 |
|
{ |
221 |
10 |
viewStyle.setColourByReferenceSeq(colourByReferenceSeq); |
222 |
|
} |
223 |
|
|
224 |
|
|
225 |
|
@param |
226 |
|
@see |
227 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
228 |
693 |
@Override... |
229 |
|
public void setColourAppliesToAllGroups(boolean b) |
230 |
|
{ |
231 |
693 |
viewStyle.setColourAppliesToAllGroups(b); |
232 |
|
} |
233 |
|
|
234 |
|
|
235 |
|
@return |
236 |
|
@see |
237 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
238 |
962 |
@Override... |
239 |
|
public boolean getColourAppliesToAllGroups() |
240 |
|
{ |
241 |
962 |
return viewStyle.getColourAppliesToAllGroups(); |
242 |
|
} |
243 |
|
|
244 |
|
|
245 |
|
@return |
246 |
|
@see |
247 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
248 |
878 |
@Override... |
249 |
|
public boolean getAbovePIDThreshold() |
250 |
|
{ |
251 |
878 |
return viewStyle.getAbovePIDThreshold(); |
252 |
|
} |
253 |
|
|
254 |
|
|
255 |
|
@param |
256 |
|
@see |
257 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
258 |
85 |
@Override... |
259 |
|
public void setIncrement(int inc) |
260 |
|
{ |
261 |
85 |
viewStyle.setIncrement(inc); |
262 |
|
} |
263 |
|
|
264 |
|
|
265 |
|
@return |
266 |
|
@see |
267 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
268 |
0 |
@Override... |
269 |
|
public int getIncrement() |
270 |
|
{ |
271 |
0 |
return viewStyle.getIncrement(); |
272 |
|
} |
273 |
|
|
274 |
|
|
275 |
|
@param |
276 |
|
@see |
277 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
278 |
93 |
@Override... |
279 |
|
public void setConservationSelected(boolean b) |
280 |
|
{ |
281 |
93 |
viewStyle.setConservationSelected(b); |
282 |
|
} |
283 |
|
|
284 |
|
|
285 |
|
@param |
286 |
|
@see |
287 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
288 |
0 |
@Override... |
289 |
|
public void setShowHiddenMarkers(boolean show) |
290 |
|
{ |
291 |
0 |
viewStyle.setShowHiddenMarkers(show); |
292 |
|
} |
293 |
|
|
294 |
|
|
295 |
|
@return |
296 |
|
@see |
297 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
298 |
8678 |
@Override... |
299 |
|
public boolean getShowHiddenMarkers() |
300 |
|
{ |
301 |
8678 |
return viewStyle.getShowHiddenMarkers(); |
302 |
|
} |
303 |
|
|
304 |
|
|
305 |
|
@param |
306 |
|
@see |
307 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
308 |
9 |
@Override... |
309 |
|
public void setScaleRightWrapped(boolean b) |
310 |
|
{ |
311 |
9 |
viewStyle.setScaleRightWrapped(b); |
312 |
|
} |
313 |
|
|
314 |
|
|
315 |
|
@param |
316 |
|
@see |
317 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
318 |
11 |
@Override... |
319 |
|
public void setScaleLeftWrapped(boolean b) |
320 |
|
{ |
321 |
11 |
viewStyle.setScaleLeftWrapped(b); |
322 |
|
} |
323 |
|
|
324 |
|
|
325 |
|
@param |
326 |
|
@see |
327 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
328 |
9 |
@Override... |
329 |
|
public void setScaleAboveWrapped(boolean b) |
330 |
|
{ |
331 |
9 |
viewStyle.setScaleAboveWrapped(b); |
332 |
|
} |
333 |
|
|
334 |
|
|
335 |
|
@return |
336 |
|
@see |
337 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
338 |
1196 |
@Override... |
339 |
|
public boolean getScaleLeftWrapped() |
340 |
|
{ |
341 |
1196 |
return viewStyle.getScaleLeftWrapped(); |
342 |
|
} |
343 |
|
|
344 |
|
|
345 |
|
@return |
346 |
|
@see |
347 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
348 |
823 |
@Override... |
349 |
|
public boolean getScaleAboveWrapped() |
350 |
|
{ |
351 |
823 |
return viewStyle.getScaleAboveWrapped(); |
352 |
|
} |
353 |
|
|
354 |
|
|
355 |
|
@return |
356 |
|
@see |
357 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
358 |
1930 |
@Override... |
359 |
|
public boolean getScaleRightWrapped() |
360 |
|
{ |
361 |
1930 |
return viewStyle.getScaleRightWrapped(); |
362 |
|
} |
363 |
|
|
364 |
|
|
365 |
|
@param |
366 |
|
@see |
367 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
368 |
94 |
@Override... |
369 |
|
public void setAbovePIDThreshold(boolean b) |
370 |
|
{ |
371 |
94 |
viewStyle.setAbovePIDThreshold(b); |
372 |
|
} |
373 |
|
|
374 |
|
|
375 |
|
@param |
376 |
|
@see |
377 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
378 |
106 |
@Override... |
379 |
|
public void setThreshold(int thresh) |
380 |
|
{ |
381 |
106 |
viewStyle.setThreshold(thresh); |
382 |
|
} |
383 |
|
|
384 |
|
|
385 |
|
@return |
386 |
|
@see |
387 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
388 |
0 |
@Override... |
389 |
|
public int getThreshold() |
390 |
|
{ |
391 |
0 |
return viewStyle.getThreshold(); |
392 |
|
} |
393 |
|
|
394 |
|
|
395 |
|
@return |
396 |
|
@see |
397 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
398 |
65528 |
@Override... |
399 |
|
public boolean getShowJVSuffix() |
400 |
|
{ |
401 |
65528 |
return viewStyle.getShowJVSuffix(); |
402 |
|
} |
403 |
|
|
404 |
|
|
405 |
|
@param |
406 |
|
@see |
407 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
408 |
86 |
@Override... |
409 |
|
public void setShowJVSuffix(boolean b) |
410 |
|
{ |
411 |
86 |
viewStyle.setShowJVSuffix(b); |
412 |
|
} |
413 |
|
|
414 |
|
|
415 |
|
@param |
416 |
|
@see |
417 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
418 |
97 |
@Override... |
419 |
|
public void setWrapAlignment(boolean state) |
420 |
|
{ |
421 |
97 |
viewStyle.setWrapAlignment(state); |
422 |
97 |
ranges.setWrappedMode(state); |
423 |
|
} |
424 |
|
|
425 |
|
|
426 |
|
@param |
427 |
|
@see |
428 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
429 |
85 |
@Override... |
430 |
|
public void setShowText(boolean state) |
431 |
|
{ |
432 |
85 |
viewStyle.setShowText(state); |
433 |
|
} |
434 |
|
|
435 |
|
|
436 |
|
@param |
437 |
|
@see |
438 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
439 |
85 |
@Override... |
440 |
|
public void setRenderGaps(boolean state) |
441 |
|
{ |
442 |
85 |
viewStyle.setRenderGaps(state); |
443 |
|
} |
444 |
|
|
445 |
|
|
446 |
|
@return |
447 |
|
@see |
448 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
449 |
415872 |
@Override... |
450 |
|
public boolean getColourText() |
451 |
|
{ |
452 |
415872 |
return viewStyle.getColourText(); |
453 |
|
} |
454 |
|
|
455 |
|
|
456 |
|
@param |
457 |
|
@see |
458 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
459 |
85 |
@Override... |
460 |
|
public void setColourText(boolean state) |
461 |
|
{ |
462 |
85 |
viewStyle.setColourText(state); |
463 |
|
} |
464 |
|
|
465 |
|
|
466 |
|
@return |
467 |
|
@see |
468 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
469 |
37204 |
@Override... |
470 |
|
public boolean getWrapAlignment() |
471 |
|
{ |
472 |
37204 |
return viewStyle.getWrapAlignment(); |
473 |
|
} |
474 |
|
|
475 |
|
|
476 |
|
@return |
477 |
|
@see |
478 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
479 |
416544 |
@Override... |
480 |
|
public boolean getShowText() |
481 |
|
{ |
482 |
416544 |
return viewStyle.getShowText(); |
483 |
|
} |
484 |
|
|
485 |
|
|
486 |
|
@return |
487 |
|
@see |
488 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
489 |
2 |
@Override... |
490 |
|
public int getWrappedWidth() |
491 |
|
{ |
492 |
2 |
return viewStyle.getWrappedWidth(); |
493 |
|
} |
494 |
|
|
495 |
|
|
496 |
|
@param |
497 |
|
@see |
498 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
499 |
752 |
@Override... |
500 |
|
public void setWrappedWidth(int w) |
501 |
|
{ |
502 |
752 |
viewStyle.setWrappedWidth(w); |
503 |
|
} |
504 |
|
|
505 |
|
|
506 |
|
@return |
507 |
|
@see |
508 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
509 |
135560 |
@Override... |
510 |
|
public int getCharHeight() |
511 |
|
{ |
512 |
135560 |
return viewStyle.getCharHeight(); |
513 |
|
} |
514 |
|
|
515 |
|
|
516 |
|
@param |
517 |
|
@see |
518 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
519 |
596 |
@Override... |
520 |
|
public void setCharHeight(int h) |
521 |
|
{ |
522 |
596 |
viewStyle.setCharHeight(h); |
523 |
|
} |
524 |
|
|
525 |
|
|
526 |
|
@return |
527 |
|
@see |
528 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
529 |
1980316 |
@Override... |
530 |
|
public int getCharWidth() |
531 |
|
{ |
532 |
1980333 |
return viewStyle.getCharWidth(); |
533 |
|
} |
534 |
|
|
535 |
|
|
536 |
|
@param |
537 |
|
@see |
538 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
539 |
599 |
@Override... |
540 |
|
public void setCharWidth(int w) |
541 |
|
{ |
542 |
599 |
viewStyle.setCharWidth(w); |
543 |
|
} |
544 |
|
|
545 |
|
|
546 |
|
@return |
547 |
|
@see |
548 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
549 |
449307 |
@Override... |
550 |
|
public boolean getShowBoxes() |
551 |
|
{ |
552 |
449306 |
return viewStyle.getShowBoxes(); |
553 |
|
} |
554 |
|
|
555 |
|
|
556 |
|
@return |
557 |
|
@see |
558 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
559 |
413907 |
@Override... |
560 |
|
public boolean getShowUnconserved() |
561 |
|
{ |
562 |
413907 |
return viewStyle.getShowUnconserved(); |
563 |
|
} |
564 |
|
|
565 |
|
|
566 |
|
@param |
567 |
|
@see |
568 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
569 |
85 |
@Override... |
570 |
|
public void setShowUnconserved(boolean showunconserved) |
571 |
|
{ |
572 |
85 |
viewStyle.setShowUnconserved(showunconserved); |
573 |
|
} |
574 |
|
|
575 |
|
|
576 |
|
@param |
577 |
|
@see |
578 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
579 |
0 |
@Override... |
580 |
|
public void setSeqNameItalics(boolean default1) |
581 |
|
{ |
582 |
0 |
viewStyle.setSeqNameItalics(default1); |
583 |
|
} |
584 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
585 |
232392 |
@Override... |
586 |
|
public AlignmentI getAlignment() |
587 |
|
{ |
588 |
232395 |
return alignment; |
589 |
|
} |
590 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
591 |
0 |
@Override... |
592 |
|
public char getGapCharacter() |
593 |
|
{ |
594 |
0 |
return alignment.getGapCharacter(); |
595 |
|
} |
596 |
|
|
597 |
|
protected String sequenceSetID; |
598 |
|
|
599 |
|
|
600 |
|
|
601 |
|
|
602 |
|
|
603 |
|
protected boolean isDataset = false; |
604 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
605 |
0 |
public void setDataset(boolean b)... |
606 |
|
{ |
607 |
0 |
isDataset = b; |
608 |
|
} |
609 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
610 |
478 |
public boolean isDataset()... |
611 |
|
{ |
612 |
478 |
return isDataset; |
613 |
|
} |
614 |
|
|
615 |
|
private Map<SequenceI, SequenceCollectionI> hiddenRepSequences; |
616 |
|
|
617 |
|
protected ColumnSelection colSel = new ColumnSelection(); |
618 |
|
|
619 |
|
public boolean autoCalculateConsensus = true; |
620 |
|
|
621 |
|
protected boolean autoCalculateStrucConsensus = true; |
622 |
|
|
623 |
|
protected boolean ignoreGapsInConsensusCalculation = false; |
624 |
|
|
625 |
|
protected ResidueShaderI residueShading = new ResidueShader(); |
626 |
|
|
|
|
| 92% |
Uncovered Elements: 2 (25) |
Complexity: 7 |
Complexity Density: 0.54 |
|
627 |
274 |
@Override... |
628 |
|
public void setGlobalColourScheme(ColourSchemeI cs) |
629 |
|
{ |
630 |
|
|
631 |
|
|
632 |
|
|
633 |
|
|
634 |
|
|
635 |
|
|
636 |
|
|
637 |
|
|
638 |
|
|
639 |
|
|
640 |
|
|
641 |
|
|
642 |
|
|
643 |
274 |
if (residueShading == null) |
644 |
|
{ |
645 |
0 |
residueShading = new ResidueShader(viewStyle); |
646 |
|
} |
647 |
274 |
residueShading.setColourScheme(cs); |
648 |
|
|
649 |
|
|
650 |
|
|
651 |
|
|
652 |
274 |
if (cs != null) |
653 |
|
{ |
654 |
81 |
if (getConservationSelected()) |
655 |
|
{ |
656 |
15 |
residueShading.setConservation(hconservation); |
657 |
|
} |
658 |
|
|
659 |
|
|
660 |
|
|
661 |
|
|
662 |
81 |
residueShading.setConservationApplied(getConservationSelected()); |
663 |
81 |
residueShading.alignmentChanged(alignment, hiddenRepSequences); |
664 |
|
} |
665 |
|
|
666 |
|
|
667 |
|
|
668 |
|
|
669 |
|
|
670 |
274 |
if (getColourAppliesToAllGroups()) |
671 |
|
{ |
672 |
86 |
for (SequenceGroup sg : getAlignment().getGroups()) |
673 |
|
{ |
674 |
|
|
675 |
|
|
676 |
|
|
677 |
|
|
678 |
9 |
sg.setColourScheme(cs == null ? null : cs.getInstance(this, sg)); |
679 |
9 |
if (cs != null) |
680 |
|
{ |
681 |
8 |
sg.getGroupColourScheme().alignmentChanged(sg, |
682 |
|
hiddenRepSequences); |
683 |
|
} |
684 |
|
} |
685 |
|
} |
686 |
|
} |
687 |
|
|
|
|
| 66.7% |
Uncovered Elements: 1 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
688 |
1399 |
@Override... |
689 |
|
public ColourSchemeI getGlobalColourScheme() |
690 |
|
{ |
691 |
1399 |
return residueShading == null ? null : residueShading.getColourScheme(); |
692 |
|
} |
693 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
694 |
453408 |
@Override... |
695 |
|
public ResidueShaderI getResidueShading() |
696 |
|
{ |
697 |
453412 |
return residueShading; |
698 |
|
} |
699 |
|
|
700 |
|
protected AlignmentAnnotation consensus; |
701 |
|
|
702 |
|
protected AlignmentAnnotation secondaryStructureConsensus; |
703 |
|
|
704 |
|
protected AlignmentAnnotation complementConsensus; |
705 |
|
|
706 |
|
protected AlignmentAnnotation gapcounts; |
707 |
|
|
708 |
|
protected AlignmentAnnotation strucConsensus; |
709 |
|
|
710 |
|
protected AlignmentAnnotation conservation; |
711 |
|
|
712 |
|
protected AlignmentAnnotation quality; |
713 |
|
|
714 |
|
protected AlignmentAnnotation[] groupConsensus; |
715 |
|
|
716 |
|
protected AlignmentAnnotation[] groupSSConsensus; |
717 |
|
|
718 |
|
protected AlignmentAnnotation[] groupConservation; |
719 |
|
|
720 |
|
|
721 |
|
|
722 |
|
|
723 |
|
protected ProfilesI hconsensus = null; |
724 |
|
|
725 |
|
protected ProfilesI hSSConsensus = null; |
726 |
|
|
727 |
|
|
728 |
|
|
729 |
|
|
730 |
|
protected Hashtable<String, Object>[] hcomplementConsensus = null; |
731 |
|
|
732 |
|
|
733 |
|
|
734 |
|
|
735 |
|
|
736 |
|
protected Hashtable<String, Object>[] hStrucConsensus = null; |
737 |
|
|
738 |
|
protected Conservation hconservation = null; |
739 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
740 |
1020 |
@Override... |
741 |
|
public void setConservation(Conservation cons) |
742 |
|
{ |
743 |
1020 |
hconservation = cons; |
744 |
|
} |
745 |
|
|
746 |
|
|
747 |
|
|
748 |
|
|
749 |
|
|
750 |
|
int ConsPercGaps = 25; |
751 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
752 |
1874 |
@Override... |
753 |
|
public int getConsPercGaps() |
754 |
|
{ |
755 |
1874 |
return ConsPercGaps; |
756 |
|
} |
757 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
758 |
970 |
@Override... |
759 |
|
public void setSequenceConsensusHash(ProfilesI hconsensus) |
760 |
|
{ |
761 |
970 |
this.hconsensus = hconsensus; |
762 |
|
} |
763 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
764 |
0 |
@Override... |
765 |
|
public void setSequenceSSConsensusHash(ProfilesI hSSConsensus) |
766 |
|
{ |
767 |
0 |
this.hSSConsensus = hSSConsensus; |
768 |
|
} |
769 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
770 |
4 |
@Override... |
771 |
|
public void setComplementConsensusHash( |
772 |
|
Hashtable<String, Object>[] hconsensus) |
773 |
|
{ |
774 |
4 |
this.hcomplementConsensus = hconsensus; |
775 |
|
} |
776 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
777 |
4304 |
@Override... |
778 |
|
public ProfilesI getSequenceConsensusHash() |
779 |
|
{ |
780 |
4304 |
return hconsensus; |
781 |
|
} |
782 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
783 |
3315 |
@Override... |
784 |
|
public ProfilesI getSequenceSSConsensusHash() |
785 |
|
{ |
786 |
3315 |
return hSSConsensus; |
787 |
|
} |
788 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
789 |
3234 |
@Override... |
790 |
|
public Hashtable<String, Object>[] getComplementConsensusHash() |
791 |
|
{ |
792 |
3234 |
return hcomplementConsensus; |
793 |
|
} |
794 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
795 |
3234 |
@Override... |
796 |
|
public Hashtable<String, Object>[] getRnaStructureConsensusHash() |
797 |
|
{ |
798 |
3234 |
return hStrucConsensus; |
799 |
|
} |
800 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
801 |
4 |
@Override... |
802 |
|
public void setRnaStructureConsensusHash( |
803 |
|
Hashtable<String, Object>[] hStrucConsensus) |
804 |
|
{ |
805 |
4 |
this.hStrucConsensus = hStrucConsensus; |
806 |
|
|
807 |
|
} |
808 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
809 |
1460 |
@Override... |
810 |
|
public AlignmentAnnotation getAlignmentQualityAnnot() |
811 |
|
{ |
812 |
1460 |
return quality; |
813 |
|
} |
814 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
815 |
2242 |
@Override... |
816 |
|
public AlignmentAnnotation getAlignmentConservationAnnotation() |
817 |
|
{ |
818 |
2242 |
return conservation; |
819 |
|
} |
820 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
821 |
6581 |
@Override... |
822 |
|
public AlignmentAnnotation getAlignmentConsensusAnnotation() |
823 |
|
{ |
824 |
6581 |
return consensus; |
825 |
|
} |
826 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
827 |
3230 |
@Override... |
828 |
|
public AlignmentAnnotation getAlignmentSecondaryStructureConsensusAnnotation() |
829 |
|
{ |
830 |
3230 |
return secondaryStructureConsensus; |
831 |
|
} |
832 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
833 |
3002 |
@Override... |
834 |
|
public AlignmentAnnotation getAlignmentGapAnnotation() |
835 |
|
{ |
836 |
3002 |
return gapcounts; |
837 |
|
} |
838 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
839 |
3242 |
@Override... |
840 |
|
public AlignmentAnnotation getComplementConsensusAnnotation() |
841 |
|
{ |
842 |
3242 |
return complementConsensus; |
843 |
|
} |
844 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
845 |
3234 |
@Override... |
846 |
|
public AlignmentAnnotation getAlignmentStrucConsensusAnnotation() |
847 |
|
{ |
848 |
3234 |
return strucConsensus; |
849 |
|
} |
850 |
|
|
851 |
|
protected AlignCalcManagerI calculator = new AlignCalcManager(); |
852 |
|
|
853 |
|
|
854 |
|
|
855 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (8) |
Complexity: 6 |
Complexity Density: 1.5 |
|
856 |
1001 |
public void updateConservation(final AlignmentViewPanel ap)... |
857 |
|
{ |
858 |
|
|
859 |
1001 |
if (alignment.isNucleotide() |
860 |
|
|| (conservation == null && quality == null) |
861 |
|
|| !autoCalculateConsensus) |
862 |
|
{ |
863 |
215 |
return; |
864 |
|
} |
865 |
786 |
if (calculator.getRegisteredWorkersOfClass( |
866 |
|
jalview.workers.ConservationThread.class) == null) |
867 |
|
{ |
868 |
453 |
calculator.registerWorker( |
869 |
|
new jalview.workers.ConservationThread(this, ap)); |
870 |
|
} |
871 |
|
} |
872 |
|
|
873 |
|
|
874 |
|
|
875 |
|
|
|
|
| 81.5% |
Uncovered Elements: 5 (27) |
Complexity: 11 |
Complexity Density: 0.73 |
|
876 |
1009 |
public void updateConsensus(final AlignmentViewPanel ap)... |
877 |
|
{ |
878 |
|
|
879 |
1009 |
if (consensus == null || !autoCalculateConsensus) |
880 |
|
{ |
881 |
0 |
return; |
882 |
|
} |
883 |
1009 |
if (calculator |
884 |
|
.getRegisteredWorkersOfClass(ConsensusThread.class) == null) |
885 |
|
{ |
886 |
458 |
calculator.registerWorker(new ConsensusThread(this, ap)); |
887 |
|
} |
888 |
|
|
889 |
|
|
890 |
|
|
891 |
|
|
892 |
|
|
893 |
1009 |
final AlignmentI al = this.getAlignment(); |
894 |
1009 |
if (!al.isNucleotide() && al.getCodonFrames() != null |
895 |
|
&& !al.getCodonFrames().isEmpty()) |
896 |
|
{ |
897 |
|
|
898 |
|
|
899 |
|
|
900 |
|
|
901 |
4 |
boolean doConsensus = false; |
902 |
4 |
for (AlignedCodonFrame mapping : al.getCodonFrames()) |
903 |
|
{ |
904 |
|
|
905 |
4 |
MapList[] mapLists = mapping.getdnaToProt(); |
906 |
|
|
907 |
4 |
if (mapLists.length > 0 && mapLists[0].getFromRatio() == 3) |
908 |
|
{ |
909 |
4 |
doConsensus = true; |
910 |
4 |
break; |
911 |
|
} |
912 |
|
} |
913 |
4 |
if (doConsensus) |
914 |
|
{ |
915 |
4 |
if (calculator.getRegisteredWorkersOfClass( |
916 |
|
ComplementConsensusThread.class) == null) |
917 |
|
{ |
918 |
4 |
calculator |
919 |
|
.registerWorker(new ComplementConsensusThread(this, ap)); |
920 |
|
} |
921 |
|
} |
922 |
|
} |
923 |
|
} |
924 |
|
|
925 |
|
|
926 |
|
|
927 |
|
|
|
|
| 37.5% |
Uncovered Elements: 5 (8) |
Complexity: 4 |
Complexity Density: 1 |
|
928 |
1009 |
public void updateSecondaryStructureConsensus(final AlignmentViewPanel ap)... |
929 |
|
{ |
930 |
|
|
931 |
1009 |
if (secondaryStructureConsensus == null || !autoCalculateConsensus) |
932 |
|
{ |
933 |
1009 |
return; |
934 |
|
} |
935 |
0 |
if (calculator.getRegisteredWorkersOfClass( |
936 |
|
SecondaryStructureConsensusThread.class) == null) |
937 |
|
{ |
938 |
0 |
calculator.registerWorker( |
939 |
|
new SecondaryStructureConsensusThread(this, ap)); |
940 |
|
} |
941 |
|
} |
942 |
|
|
943 |
|
|
|
|
| 75% |
Uncovered Elements: 3 (12) |
Complexity: 8 |
Complexity Density: 1.33 |
|
944 |
1006 |
public void updateStrucConsensus(final AlignmentViewPanel ap)... |
945 |
|
{ |
946 |
1006 |
if (autoCalculateStrucConsensus && strucConsensus == null |
947 |
|
&& alignment.isNucleotide() && alignment.hasRNAStructure()) |
948 |
|
{ |
949 |
|
|
950 |
0 |
initRNAStructure(); |
951 |
|
} |
952 |
|
|
953 |
|
|
954 |
1006 |
if (strucConsensus == null || !autoCalculateStrucConsensus) |
955 |
|
{ |
956 |
1003 |
return; |
957 |
|
} |
958 |
3 |
if (calculator.getRegisteredWorkersOfClass( |
959 |
|
StrucConsensusThread.class) == null) |
960 |
|
{ |
961 |
3 |
calculator.registerWorker(new StrucConsensusThread(this, ap)); |
962 |
|
} |
963 |
|
} |
964 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
965 |
3708 |
public boolean isCalcInProgress()... |
966 |
|
{ |
967 |
3708 |
return calculator.isWorking(); |
968 |
|
} |
969 |
|
|
|
|
| 77.8% |
Uncovered Elements: 2 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
970 |
12522 |
@Override... |
971 |
|
public boolean isCalculationInProgress( |
972 |
|
AlignmentAnnotation alignmentAnnotation) |
973 |
|
{ |
974 |
12522 |
if (!alignmentAnnotation.autoCalculated) |
975 |
|
{ |
976 |
0 |
return false; |
977 |
|
} |
978 |
12522 |
if (calculator.workingInvolvedWith(alignmentAnnotation)) |
979 |
|
{ |
980 |
|
|
981 |
|
|
982 |
388 |
return true; |
983 |
|
} |
984 |
12134 |
return false; |
985 |
|
} |
986 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
987 |
761 |
public void setAlignment(AlignmentI align)... |
988 |
|
{ |
989 |
761 |
this.alignment = align; |
990 |
|
} |
991 |
|
|
992 |
|
|
993 |
|
|
994 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (20) |
Complexity: 1 |
Complexity Density: 0.05 |
|
995 |
253 |
@Override... |
996 |
|
public void dispose() |
997 |
|
{ |
998 |
|
|
999 |
|
|
1000 |
|
|
1001 |
|
|
1002 |
253 |
consensus = null; |
1003 |
253 |
complementConsensus = null; |
1004 |
253 |
strucConsensus = null; |
1005 |
253 |
secondaryStructureConsensus = null; |
1006 |
253 |
conservation = null; |
1007 |
253 |
quality = null; |
1008 |
253 |
groupConsensus = null; |
1009 |
253 |
groupConservation = null; |
1010 |
253 |
hconsensus = null; |
1011 |
253 |
hconservation = null; |
1012 |
253 |
hcomplementConsensus = null; |
1013 |
253 |
gapcounts = null; |
1014 |
253 |
calculator = null; |
1015 |
253 |
residueShading = null; |
1016 |
253 |
changeSupport = null; |
1017 |
253 |
ranges = null; |
1018 |
253 |
currentTree = null; |
1019 |
253 |
selectionGroup = null; |
1020 |
253 |
colSel = null; |
1021 |
253 |
setAlignment(null); |
1022 |
|
} |
1023 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1024 |
3037 |
@Override... |
1025 |
|
public boolean isClosed() |
1026 |
|
{ |
1027 |
|
|
1028 |
|
|
1029 |
3037 |
return alignment == null; |
1030 |
|
} |
1031 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1032 |
940 |
@Override... |
1033 |
|
public AlignCalcManagerI getCalcManager() |
1034 |
|
{ |
1035 |
940 |
return calculator; |
1036 |
|
} |
1037 |
|
|
1038 |
|
|
1039 |
|
|
1040 |
|
|
1041 |
|
protected boolean showGroupConservation = false; |
1042 |
|
|
1043 |
|
|
1044 |
|
|
1045 |
|
|
1046 |
|
protected boolean showGroupConsensus = false; |
1047 |
|
|
1048 |
|
protected boolean showGroupSSConsensus = false; |
1049 |
|
|
1050 |
|
|
1051 |
|
|
1052 |
|
|
1053 |
|
protected boolean showSequenceLogo = false; |
1054 |
|
|
1055 |
|
protected boolean showSequenceSSLogo = false; |
1056 |
|
|
1057 |
|
|
1058 |
|
|
1059 |
|
|
1060 |
|
protected boolean normaliseSequenceLogo = false; |
1061 |
|
|
1062 |
|
|
1063 |
|
|
1064 |
|
|
1065 |
|
protected boolean showConsensusHistogram = true; |
1066 |
|
|
1067 |
|
protected boolean showSSConsensusHistogram = true; |
1068 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1069 |
0 |
public void setShowSSConsensusHistogram(boolean showSSConsensusHistogram)... |
1070 |
|
{ |
1071 |
0 |
this.showSSConsensusHistogram = showSSConsensusHistogram; |
1072 |
|
} |
1073 |
|
|
1074 |
|
|
1075 |
|
@return |
1076 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1077 |
5068 |
@Override... |
1078 |
|
public boolean isShowSequenceLogo() |
1079 |
|
{ |
1080 |
5068 |
return showSequenceLogo; |
1081 |
|
} |
1082 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1083 |
130 |
@Override... |
1084 |
|
public boolean isShowSequenceSSLogo() |
1085 |
|
{ |
1086 |
130 |
return showSequenceSSLogo; |
1087 |
|
} |
1088 |
|
|
1089 |
|
|
1090 |
|
@param |
1091 |
|
|
1092 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
1093 |
85 |
public void setShowSequenceLogo(boolean showSequenceLogo)... |
1094 |
|
{ |
1095 |
85 |
if (showSequenceLogo != this.showSequenceLogo) |
1096 |
|
{ |
1097 |
|
|
1098 |
|
|
1099 |
16 |
this.showSequenceLogo = showSequenceLogo; |
1100 |
16 |
calculator.updateAnnotationFor(ConsensusThread.class); |
1101 |
16 |
calculator.updateAnnotationFor(ComplementConsensusThread.class); |
1102 |
16 |
calculator.updateAnnotationFor(StrucConsensusThread.class); |
1103 |
|
} |
1104 |
85 |
this.showSequenceLogo = showSequenceLogo; |
1105 |
|
} |
1106 |
|
|
|
|
| 0% |
Uncovered Elements: 6 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
1107 |
0 |
public void setShowSequenceSSLogo(boolean showSequenceSSLogo)... |
1108 |
|
{ |
1109 |
0 |
if (showSequenceSSLogo != this.showSequenceSSLogo) |
1110 |
|
{ |
1111 |
|
|
1112 |
|
|
1113 |
0 |
this.showSequenceSSLogo = showSequenceSSLogo; |
1114 |
0 |
calculator |
1115 |
|
.updateAnnotationFor(SecondaryStructureConsensusThread.class); |
1116 |
|
} |
1117 |
0 |
this.showSequenceSSLogo = showSequenceSSLogo; |
1118 |
|
} |
1119 |
|
|
1120 |
|
|
1121 |
|
@param |
1122 |
|
|
1123 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1124 |
85 |
public void setShowConsensusHistogram(boolean showConsensusHistogram)... |
1125 |
|
{ |
1126 |
85 |
this.showConsensusHistogram = showConsensusHistogram; |
1127 |
|
} |
1128 |
|
|
1129 |
|
|
1130 |
|
@return |
1131 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1132 |
848 |
public boolean isShowGroupConservation()... |
1133 |
|
{ |
1134 |
848 |
return showGroupConservation; |
1135 |
|
} |
1136 |
|
|
1137 |
|
|
1138 |
|
@param |
1139 |
|
|
1140 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1141 |
85 |
public void setShowGroupConservation(boolean showGroupConservation)... |
1142 |
|
{ |
1143 |
85 |
this.showGroupConservation = showGroupConservation; |
1144 |
|
} |
1145 |
|
|
1146 |
|
|
1147 |
|
@return |
1148 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1149 |
848 |
public boolean isShowGroupConsensus()... |
1150 |
|
{ |
1151 |
848 |
return showGroupConsensus; |
1152 |
|
} |
1153 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1154 |
130 |
public boolean isShowGroupSSConsensus()... |
1155 |
|
{ |
1156 |
130 |
return showGroupSSConsensus; |
1157 |
|
} |
1158 |
|
|
1159 |
|
|
1160 |
|
@param |
1161 |
|
|
1162 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1163 |
85 |
public void setShowGroupConsensus(boolean showGroupConsensus)... |
1164 |
|
{ |
1165 |
85 |
this.showGroupConsensus = showGroupConsensus; |
1166 |
|
} |
1167 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1168 |
0 |
public void setShowGroupSSConsensus(boolean showGroupSSConsensus)... |
1169 |
|
{ |
1170 |
0 |
this.showGroupSSConsensus = showGroupSSConsensus; |
1171 |
|
} |
1172 |
|
|
1173 |
|
|
1174 |
|
@param |
1175 |
|
|
1176 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1177 |
0 |
public void setShowSSConsensus(boolean showSSConsensus)... |
1178 |
|
{ |
1179 |
0 |
this.showSSConsensus = showSSConsensus; |
1180 |
|
} |
1181 |
|
|
1182 |
|
|
1183 |
|
|
1184 |
|
@return |
1185 |
|
|
1186 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1187 |
4078 |
@Override... |
1188 |
|
public boolean isShowConsensusHistogram() |
1189 |
|
{ |
1190 |
4078 |
return this.showConsensusHistogram; |
1191 |
|
} |
1192 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1193 |
130 |
@Override... |
1194 |
|
public boolean isShowSSConsensusHistogram() |
1195 |
|
{ |
1196 |
130 |
return this.showSSConsensusHistogram; |
1197 |
|
} |
1198 |
|
|
1199 |
|
|
1200 |
|
|
1201 |
|
|
1202 |
|
private boolean padGaps = false; |
1203 |
|
|
1204 |
|
|
1205 |
|
|
1206 |
|
|
1207 |
|
public boolean sortByTree = false; |
1208 |
|
|
1209 |
|
|
1210 |
|
|
1211 |
|
|
1212 |
|
@return |
1213 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1214 |
30597 |
@Override... |
1215 |
|
public SequenceGroup getSelectionGroup() |
1216 |
|
{ |
1217 |
30597 |
return selectionGroup; |
1218 |
|
} |
1219 |
|
|
1220 |
|
|
1221 |
|
|
1222 |
|
|
1223 |
|
|
1224 |
|
@param |
1225 |
|
|
1226 |
|
|
1227 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 3 |
Complexity Density: 1 |
|
1228 |
144 |
@Override... |
1229 |
|
public void setSelectionGroup(SequenceGroup sg) |
1230 |
|
{ |
1231 |
144 |
selectionGroup = sg; |
1232 |
144 |
if (sg != null && sg.getContext() == null) |
1233 |
|
{ |
1234 |
36 |
sg.setContext(alignment); |
1235 |
|
} |
1236 |
|
} |
1237 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1238 |
1 |
public void setHiddenColumns(HiddenColumns hidden)... |
1239 |
|
{ |
1240 |
1 |
this.alignment.setHiddenColumns(hidden); |
1241 |
|
} |
1242 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1243 |
6569 |
@Override... |
1244 |
|
public ColumnSelection getColumnSelection() |
1245 |
|
{ |
1246 |
6569 |
return colSel; |
1247 |
|
} |
1248 |
|
|
|
|
| 83.3% |
Uncovered Elements: 1 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
1249 |
13 |
@Override... |
1250 |
|
public void setColumnSelection(ColumnSelection colSel) |
1251 |
|
{ |
1252 |
13 |
this.colSel = colSel; |
1253 |
13 |
if (colSel != null) |
1254 |
|
{ |
1255 |
13 |
updateHiddenColumns(); |
1256 |
|
} |
1257 |
13 |
isColSelChanged(true); |
1258 |
|
} |
1259 |
|
|
1260 |
|
|
1261 |
|
|
1262 |
|
@return |
1263 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1264 |
32 |
@Override... |
1265 |
|
public Map<SequenceI, SequenceCollectionI> getHiddenRepSequences() |
1266 |
|
{ |
1267 |
32 |
return hiddenRepSequences; |
1268 |
|
} |
1269 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1270 |
0 |
@Override... |
1271 |
|
public void setHiddenRepSequences( |
1272 |
|
Map<SequenceI, SequenceCollectionI> hiddenRepSequences) |
1273 |
|
{ |
1274 |
0 |
this.hiddenRepSequences = hiddenRepSequences; |
1275 |
|
} |
1276 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
1277 |
0 |
@Override... |
1278 |
|
public boolean hasSelectedColumns() |
1279 |
|
{ |
1280 |
0 |
ColumnSelection columnSelection = getColumnSelection(); |
1281 |
0 |
return columnSelection != null && columnSelection.hasSelectedColumns(); |
1282 |
|
} |
1283 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1284 |
11164 |
@Override... |
1285 |
|
public boolean hasHiddenColumns() |
1286 |
|
{ |
1287 |
11164 |
return alignment.getHiddenColumns() != null |
1288 |
|
&& alignment.getHiddenColumns().hasHiddenColumns(); |
1289 |
|
} |
1290 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
1291 |
14 |
public void updateHiddenColumns()... |
1292 |
|
{ |
1293 |
|
|
1294 |
|
|
1295 |
|
|
1296 |
|
} |
1297 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1298 |
5629 |
@Override... |
1299 |
|
public boolean hasHiddenRows() |
1300 |
|
{ |
1301 |
5629 |
return alignment.getHiddenSequences().getSize() > 0; |
1302 |
|
} |
1303 |
|
|
1304 |
|
protected SequenceGroup selectionGroup; |
1305 |
|
|
|
|
| 80% |
Uncovered Elements: 1 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1306 |
85 |
public void setSequenceSetId(String newid)... |
1307 |
|
{ |
1308 |
85 |
if (sequenceSetID != null) |
1309 |
|
{ |
1310 |
85 |
jalview.bin.Console.errPrintln( |
1311 |
|
"Warning - overwriting a sequenceSetId for a viewport!"); |
1312 |
|
} |
1313 |
85 |
sequenceSetID = new String(newid); |
1314 |
|
} |
1315 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1316 |
4465 |
@Override... |
1317 |
|
public String getSequenceSetId() |
1318 |
|
{ |
1319 |
4465 |
if (sequenceSetID == null) |
1320 |
|
{ |
1321 |
364 |
sequenceSetID = alignment.hashCode() + ""; |
1322 |
|
} |
1323 |
|
|
1324 |
4465 |
return sequenceSetID; |
1325 |
|
} |
1326 |
|
|
1327 |
|
|
1328 |
|
|
1329 |
|
|
1330 |
|
|
1331 |
|
protected String viewId = null; |
1332 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1333 |
598 |
@Override... |
1334 |
|
public String getViewId() |
1335 |
|
{ |
1336 |
598 |
if (viewId == null) |
1337 |
|
{ |
1338 |
300 |
viewId = this.getSequenceSetId() + "." + this.hashCode() + ""; |
1339 |
|
} |
1340 |
598 |
return viewId; |
1341 |
|
} |
1342 |
|
|
|
|
| 90% |
Uncovered Elements: 1 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
1343 |
88 |
public void setIgnoreGapsConsensus(boolean b, AlignmentViewPanel ap)... |
1344 |
|
{ |
1345 |
88 |
ignoreGapsInConsensusCalculation = b; |
1346 |
88 |
if (ap != null) |
1347 |
|
{ |
1348 |
3 |
updateConsensus(ap); |
1349 |
3 |
updateSecondaryStructureConsensus(ap); |
1350 |
3 |
if (residueShading != null) |
1351 |
|
{ |
1352 |
3 |
residueShading.setThreshold(residueShading.getThreshold(), |
1353 |
|
ignoreGapsInConsensusCalculation); |
1354 |
|
} |
1355 |
|
} |
1356 |
|
|
1357 |
|
} |
1358 |
|
|
1359 |
|
private long sgrouphash = -1, colselhash = -1; |
1360 |
|
|
1361 |
|
|
1362 |
|
|
1363 |
|
|
1364 |
|
|
1365 |
|
@param |
1366 |
|
|
1367 |
|
|
1368 |
|
@return |
1369 |
|
|
|
|
| 91.7% |
Uncovered Elements: 1 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
1370 |
169 |
public boolean isSelectionGroupChanged(boolean b)... |
1371 |
|
{ |
1372 |
169 |
int hc = (selectionGroup == null || selectionGroup.getSize() == 0) ? -1 |
1373 |
|
: selectionGroup.hashCode(); |
1374 |
169 |
if (hc != -1 && hc != sgrouphash) |
1375 |
|
{ |
1376 |
9 |
if (b) |
1377 |
|
{ |
1378 |
9 |
sgrouphash = hc; |
1379 |
|
} |
1380 |
9 |
return true; |
1381 |
|
} |
1382 |
160 |
return false; |
1383 |
|
} |
1384 |
|
|
1385 |
|
|
1386 |
|
|
1387 |
|
|
1388 |
|
|
1389 |
|
@param |
1390 |
|
|
1391 |
|
@return |
1392 |
|
|
|
|
| 91.7% |
Uncovered Elements: 1 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
1393 |
177 |
public boolean isColSelChanged(boolean b)... |
1394 |
|
{ |
1395 |
177 |
int hc = (colSel == null || colSel.isEmpty()) ? -1 : colSel.hashCode(); |
1396 |
177 |
if (hc != -1 && hc != colselhash) |
1397 |
|
{ |
1398 |
17 |
if (b) |
1399 |
|
{ |
1400 |
17 |
colselhash = hc; |
1401 |
|
} |
1402 |
17 |
return true; |
1403 |
|
} |
1404 |
160 |
return false; |
1405 |
|
} |
1406 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1407 |
4289 |
@Override... |
1408 |
|
public boolean isIgnoreGapsConsensus() |
1409 |
|
{ |
1410 |
4289 |
return ignoreGapsInConsensusCalculation; |
1411 |
|
} |
1412 |
|
|
1413 |
|
|
1414 |
|
|
1415 |
|
private PropertyChangeSupport changeSupport = new PropertyChangeSupport( |
1416 |
|
this); |
1417 |
|
|
1418 |
|
protected boolean showConservation = true; |
1419 |
|
|
1420 |
|
protected boolean showQuality = true; |
1421 |
|
|
1422 |
|
protected boolean showConsensus = true; |
1423 |
|
|
1424 |
|
protected boolean showSSConsensus = false; |
1425 |
|
|
1426 |
|
protected boolean showOccupancy = true; |
1427 |
|
|
1428 |
|
private Map<SequenceI, Color> sequenceColours = new HashMap<>(); |
1429 |
|
|
1430 |
|
protected SequenceAnnotationOrder sortAnnotationsBy = null; |
1431 |
|
|
1432 |
|
protected boolean showAutocalculatedAbove; |
1433 |
|
|
1434 |
|
|
1435 |
|
|
1436 |
|
|
1437 |
|
private boolean followHighlight = true; |
1438 |
|
|
1439 |
|
|
1440 |
|
|
1441 |
|
|
1442 |
|
@param |
1443 |
|
|
1444 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1445 |
492 |
public void addPropertyChangeListener(... |
1446 |
|
java.beans.PropertyChangeListener listener) |
1447 |
|
{ |
1448 |
492 |
changeSupport.addPropertyChangeListener(listener); |
1449 |
|
} |
1450 |
|
|
1451 |
|
|
1452 |
|
|
1453 |
|
|
1454 |
|
@param |
1455 |
|
|
1456 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
1457 |
265 |
public void removePropertyChangeListener(... |
1458 |
|
java.beans.PropertyChangeListener listener) |
1459 |
|
{ |
1460 |
265 |
if (changeSupport != null) |
1461 |
|
{ |
1462 |
264 |
changeSupport.removePropertyChangeListener(listener); |
1463 |
|
} |
1464 |
|
} |
1465 |
|
|
1466 |
|
|
1467 |
|
|
1468 |
|
|
1469 |
|
@param |
1470 |
|
|
1471 |
|
@param |
1472 |
|
|
1473 |
|
@param |
1474 |
|
|
1475 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1476 |
78 |
public void firePropertyChange(String prop, Object oldvalue,... |
1477 |
|
Object newvalue) |
1478 |
|
{ |
1479 |
78 |
changeSupport.firePropertyChange(prop, oldvalue, newvalue); |
1480 |
|
} |
1481 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1482 |
0 |
@Override... |
1483 |
|
public void notifyAlignmentChanged() |
1484 |
|
{ |
1485 |
0 |
firePropertyChange("alignment", null, alignment); |
1486 |
|
} |
1487 |
|
|
1488 |
|
|
1489 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (7) |
Complexity: 2 |
Complexity Density: 0.4 |
|
1490 |
6 |
public void hideSelectedColumns()... |
1491 |
|
{ |
1492 |
6 |
if (colSel.isEmpty()) |
1493 |
|
{ |
1494 |
2 |
return; |
1495 |
|
} |
1496 |
|
|
1497 |
4 |
colSel.hideSelectedColumns(alignment); |
1498 |
4 |
setSelectionGroup(null); |
1499 |
4 |
isColSelChanged(true); |
1500 |
|
} |
1501 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
1502 |
71 |
public void hideColumns(int start, int end)... |
1503 |
|
{ |
1504 |
71 |
if (start == end) |
1505 |
|
{ |
1506 |
2 |
colSel.hideSelectedColumns(start, alignment.getHiddenColumns()); |
1507 |
|
} |
1508 |
|
else |
1509 |
|
{ |
1510 |
69 |
alignment.getHiddenColumns().hideColumns(start, end); |
1511 |
|
} |
1512 |
71 |
isColSelChanged(true); |
1513 |
|
} |
1514 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
1515 |
1 |
public void showColumn(int col)... |
1516 |
|
{ |
1517 |
1 |
alignment.getHiddenColumns().revealHiddenColumns(col, colSel); |
1518 |
1 |
isColSelChanged(true); |
1519 |
|
} |
1520 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
1521 |
5 |
public void showAllHiddenColumns()... |
1522 |
|
{ |
1523 |
5 |
alignment.getHiddenColumns().revealAllHiddenColumns(colSel); |
1524 |
5 |
isColSelChanged(true); |
1525 |
|
} |
1526 |
|
|
1527 |
|
|
|
|
| 77.8% |
Uncovered Elements: 4 (18) |
Complexity: 3 |
Complexity Density: 0.21 |
|
1528 |
1 |
public void showAllHiddenSeqs()... |
1529 |
|
{ |
1530 |
1 |
int startSeq = ranges.getStartSeq(); |
1531 |
1 |
int endSeq = ranges.getEndSeq(); |
1532 |
|
|
1533 |
1 |
if (alignment.getHiddenSequences().getSize() > 0) |
1534 |
|
{ |
1535 |
1 |
if (selectionGroup == null) |
1536 |
|
{ |
1537 |
0 |
selectionGroup = new SequenceGroup(); |
1538 |
0 |
selectionGroup.setEndRes(alignment.getWidth() - 1); |
1539 |
|
} |
1540 |
1 |
List<SequenceI> tmp = alignment.getHiddenSequences() |
1541 |
|
.showAll(hiddenRepSequences); |
1542 |
1 |
for (SequenceI seq : tmp) |
1543 |
|
{ |
1544 |
2 |
selectionGroup.addSequence(seq, false); |
1545 |
2 |
setSequenceAnnotationsVisible(seq, true); |
1546 |
|
} |
1547 |
|
|
1548 |
1 |
hiddenRepSequences = null; |
1549 |
|
|
1550 |
1 |
ranges.setStartEndSeq(startSeq, endSeq + tmp.size()); |
1551 |
|
|
1552 |
1 |
firePropertyChange("alignment", null, alignment.getSequences()); |
1553 |
|
|
1554 |
|
|
1555 |
1 |
sendSelection(); |
1556 |
|
} |
1557 |
|
} |
1558 |
|
|
|
|
| 88.2% |
Uncovered Elements: 2 (17) |
Complexity: 3 |
Complexity Density: 0.23 |
|
1559 |
2 |
public void showSequence(int index)... |
1560 |
|
{ |
1561 |
2 |
int startSeq = ranges.getStartSeq(); |
1562 |
2 |
int endSeq = ranges.getEndSeq(); |
1563 |
|
|
1564 |
2 |
List<SequenceI> tmp = alignment.getHiddenSequences().showSequence(index, |
1565 |
|
hiddenRepSequences); |
1566 |
2 |
if (tmp.size() > 0) |
1567 |
|
{ |
1568 |
2 |
if (selectionGroup == null) |
1569 |
|
{ |
1570 |
2 |
selectionGroup = new SequenceGroup(); |
1571 |
2 |
selectionGroup.setEndRes(alignment.getWidth() - 1); |
1572 |
|
} |
1573 |
|
|
1574 |
2 |
for (SequenceI seq : tmp) |
1575 |
|
{ |
1576 |
3 |
selectionGroup.addSequence(seq, false); |
1577 |
3 |
setSequenceAnnotationsVisible(seq, true); |
1578 |
|
} |
1579 |
|
|
1580 |
2 |
ranges.setStartEndSeq(startSeq, endSeq + tmp.size()); |
1581 |
|
|
1582 |
2 |
firePropertyChange("alignment", null, alignment.getSequences()); |
1583 |
2 |
sendSelection(); |
1584 |
|
} |
1585 |
|
} |
1586 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 3 |
Complexity Density: 0.6 |
|
1587 |
0 |
public void hideAllSelectedSeqs()... |
1588 |
|
{ |
1589 |
0 |
if (selectionGroup == null || selectionGroup.getSize() < 1) |
1590 |
|
{ |
1591 |
0 |
return; |
1592 |
|
} |
1593 |
|
|
1594 |
0 |
SequenceI[] seqs = selectionGroup.getSequencesInOrder(alignment); |
1595 |
|
|
1596 |
0 |
hideSequence(seqs); |
1597 |
|
|
1598 |
0 |
setSelectionGroup(null); |
1599 |
|
} |
1600 |
|
|
|
|
| 90.9% |
Uncovered Elements: 1 (11) |
Complexity: 3 |
Complexity Density: 0.43 |
|
1601 |
54 |
public void hideSequence(SequenceI[] seq)... |
1602 |
|
{ |
1603 |
|
|
1604 |
|
|
1605 |
|
|
1606 |
54 |
int startSeq = ranges.getStartSeq(); |
1607 |
|
|
1608 |
54 |
if (seq != null) |
1609 |
|
{ |
1610 |
252 |
for (int i = 0; i < seq.length; i++) |
1611 |
|
{ |
1612 |
198 |
alignment.getHiddenSequences().hideSequence(seq[i]); |
1613 |
198 |
setSequenceAnnotationsVisible(seq[i], false); |
1614 |
|
} |
1615 |
54 |
ranges.setStartSeq(startSeq); |
1616 |
54 |
firePropertyChange("alignment", null, alignment.getSequences()); |
1617 |
|
} |
1618 |
|
} |
1619 |
|
|
1620 |
|
|
1621 |
|
|
1622 |
|
|
1623 |
|
@param |
1624 |
|
|
1625 |
|
@param |
1626 |
|
|
1627 |
|
|
1628 |
|
|
|
|
| 43.8% |
Uncovered Elements: 9 (16) |
Complexity: 4 |
Complexity Density: 0.33 |
|
1629 |
3 |
public void hideSequences(SequenceI sequence, boolean representGroup)... |
1630 |
|
{ |
1631 |
3 |
if (selectionGroup == null || selectionGroup.getSize() < 1) |
1632 |
|
{ |
1633 |
0 |
hideSequence(new SequenceI[] { sequence }); |
1634 |
0 |
return; |
1635 |
|
} |
1636 |
|
|
1637 |
3 |
if (representGroup) |
1638 |
|
{ |
1639 |
3 |
hideRepSequences(sequence, selectionGroup); |
1640 |
3 |
setSelectionGroup(null); |
1641 |
3 |
return; |
1642 |
|
} |
1643 |
|
|
1644 |
0 |
int gsize = selectionGroup.getSize(); |
1645 |
0 |
SequenceI[] hseqs = selectionGroup.getSequences() |
1646 |
|
.toArray(new SequenceI[gsize]); |
1647 |
|
|
1648 |
0 |
hideSequence(hseqs); |
1649 |
0 |
setSelectionGroup(null); |
1650 |
0 |
sendSelection(); |
1651 |
|
} |
1652 |
|
|
1653 |
|
|
1654 |
|
|
1655 |
|
|
1656 |
|
@param |
1657 |
|
|
|
|
| 66.7% |
Uncovered Elements: 3 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
1658 |
203 |
protected void setSequenceAnnotationsVisible(SequenceI sequenceI,... |
1659 |
|
boolean visible) |
1660 |
|
{ |
1661 |
203 |
AlignmentAnnotation[] anns = alignment.getAlignmentAnnotation(); |
1662 |
203 |
if (anns != null) |
1663 |
|
{ |
1664 |
203 |
for (AlignmentAnnotation ann : anns) |
1665 |
|
{ |
1666 |
1033 |
if (ann.sequenceRef == sequenceI) |
1667 |
|
{ |
1668 |
0 |
ann.visible = visible; |
1669 |
|
} |
1670 |
|
} |
1671 |
|
} |
1672 |
|
} |
1673 |
|
|
|
|
| 80.8% |
Uncovered Elements: 5 (26) |
Complexity: 6 |
Complexity Density: 0.38 |
|
1674 |
5 |
public void hideRepSequences(SequenceI repSequence, SequenceGroup sg)... |
1675 |
|
{ |
1676 |
5 |
int sSize = sg.getSize(); |
1677 |
5 |
if (sSize < 2) |
1678 |
|
{ |
1679 |
0 |
return; |
1680 |
|
} |
1681 |
|
|
1682 |
5 |
if (hiddenRepSequences == null) |
1683 |
|
{ |
1684 |
5 |
hiddenRepSequences = new Hashtable<>(); |
1685 |
|
} |
1686 |
|
|
1687 |
5 |
hiddenRepSequences.put(repSequence, sg); |
1688 |
|
|
1689 |
|
|
1690 |
5 |
SequenceI[] seqs = new SequenceI[sSize - 1]; |
1691 |
5 |
int index = 0; |
1692 |
16 |
for (int i = 0; i < sSize; i++) |
1693 |
|
{ |
1694 |
11 |
if (sg.getSequenceAt(i) != repSequence) |
1695 |
|
{ |
1696 |
6 |
if (index == sSize - 1) |
1697 |
|
{ |
1698 |
0 |
return; |
1699 |
|
} |
1700 |
|
|
1701 |
6 |
seqs[index++] = sg.getSequenceAt(i); |
1702 |
|
} |
1703 |
|
} |
1704 |
5 |
sg.setSeqrep(repSequence); |
1705 |
5 |
sg.setHidereps(true); |
1706 |
5 |
hideSequence(seqs); |
1707 |
|
|
1708 |
|
} |
1709 |
|
|
1710 |
|
|
1711 |
|
|
1712 |
|
@return |
1713 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1714 |
0 |
public SequenceI getReferenceSeq()... |
1715 |
|
{ |
1716 |
0 |
return alignment.getSeqrep(); |
1717 |
|
} |
1718 |
|
|
1719 |
|
|
1720 |
|
@param |
1721 |
|
@return |
1722 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1723 |
7004 |
public boolean isReferenceSeq(SequenceI seq)... |
1724 |
|
{ |
1725 |
7004 |
return alignment.getSeqrep() == seq; |
1726 |
|
} |
1727 |
|
|
1728 |
|
|
1729 |
|
|
1730 |
|
@param |
1731 |
|
@return |
1732 |
|
|
1733 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1734 |
6946 |
public boolean isHiddenRepSequence(SequenceI seq)... |
1735 |
|
{ |
1736 |
6946 |
return (hiddenRepSequences != null |
1737 |
|
&& hiddenRepSequences.containsKey(seq)); |
1738 |
|
} |
1739 |
|
|
1740 |
|
|
1741 |
|
|
1742 |
|
@param |
1743 |
|
@return |
1744 |
|
|
1745 |
|
|
|
|
| 66.7% |
Uncovered Elements: 1 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
1746 |
2 |
public SequenceGroup getRepresentedSequences(SequenceI seq)... |
1747 |
|
{ |
1748 |
2 |
return (SequenceGroup) (hiddenRepSequences == null ? null |
1749 |
|
: hiddenRepSequences.get(seq)); |
1750 |
|
} |
1751 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1752 |
0 |
@Override... |
1753 |
|
public int adjustForHiddenSeqs(int alignmentIndex) |
1754 |
|
{ |
1755 |
0 |
return alignment.getHiddenSequences() |
1756 |
|
.adjustForHiddenSeqs(alignmentIndex); |
1757 |
|
} |
1758 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
1759 |
0 |
@Override... |
1760 |
|
public void invertColumnSelection() |
1761 |
|
{ |
1762 |
0 |
colSel.invertColumnSelection(0, alignment.getWidth(), alignment); |
1763 |
0 |
isColSelChanged(true); |
1764 |
|
} |
1765 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (12) |
Complexity: 4 |
Complexity Density: 0.5 |
|
1766 |
4 |
@Override... |
1767 |
|
public SequenceI[] getSelectionAsNewSequence() |
1768 |
|
{ |
1769 |
4 |
SequenceI[] sequences; |
1770 |
|
|
1771 |
|
|
1772 |
|
|
1773 |
|
|
1774 |
|
|
1775 |
4 |
if (selectionGroup == null || selectionGroup.getSize() == 0) |
1776 |
|
{ |
1777 |
2 |
sequences = alignment.getSequencesArray(); |
1778 |
2 |
AlignmentAnnotation[] annots = alignment.getAlignmentAnnotation(); |
1779 |
4 |
for (int i = 0; i < sequences.length; i++) |
1780 |
|
{ |
1781 |
|
|
1782 |
2 |
sequences[i] = new Sequence(sequences[i], annots); |
1783 |
|
} |
1784 |
|
} |
1785 |
|
else |
1786 |
|
{ |
1787 |
2 |
sequences = selectionGroup.getSelectionAsNewSequences(alignment); |
1788 |
|
} |
1789 |
|
|
1790 |
4 |
return sequences; |
1791 |
|
} |
1792 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
1793 |
28 |
@Override... |
1794 |
|
public SequenceI[] getSequenceSelection() |
1795 |
|
{ |
1796 |
28 |
SequenceI[] sequences = null; |
1797 |
28 |
if (selectionGroup != null) |
1798 |
|
{ |
1799 |
4 |
sequences = selectionGroup.getSequencesInOrder(alignment); |
1800 |
|
} |
1801 |
28 |
if (sequences == null) |
1802 |
|
{ |
1803 |
24 |
sequences = alignment.getSequencesArray(); |
1804 |
|
} |
1805 |
28 |
return sequences; |
1806 |
|
} |
1807 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1808 |
20 |
@Override... |
1809 |
|
public jalview.datamodel.AlignmentView getAlignmentView( |
1810 |
|
boolean selectedOnly) |
1811 |
|
{ |
1812 |
20 |
return getAlignmentView(selectedOnly, false); |
1813 |
|
} |
1814 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1815 |
21 |
@Override... |
1816 |
|
public jalview.datamodel.AlignmentView getAlignmentView( |
1817 |
|
boolean selectedOnly, boolean markGroups) |
1818 |
|
{ |
1819 |
21 |
return new AlignmentView(alignment, alignment.getHiddenColumns(), |
1820 |
|
selectionGroup, |
1821 |
|
alignment.getHiddenColumns() != null |
1822 |
|
&& alignment.getHiddenColumns().hasHiddenColumns(), |
1823 |
|
selectedOnly, markGroups); |
1824 |
|
} |
1825 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1826 |
24 |
@Override... |
1827 |
|
public String[] getViewAsString(boolean selectedRegionOnly) |
1828 |
|
{ |
1829 |
24 |
return getViewAsString(selectedRegionOnly, true); |
1830 |
|
} |
1831 |
|
|
|
|
| 71.4% |
Uncovered Elements: 10 (35) |
Complexity: 9 |
Complexity Density: 0.36 |
|
1832 |
24 |
@Override... |
1833 |
|
public String[] getViewAsString(boolean selectedRegionOnly, |
1834 |
|
boolean exportHiddenSeqs) |
1835 |
|
{ |
1836 |
24 |
String[] selection = null; |
1837 |
24 |
SequenceI[] seqs = null; |
1838 |
24 |
int i, iSize; |
1839 |
24 |
int start = 0, end = 0; |
1840 |
24 |
if (selectedRegionOnly && selectionGroup != null) |
1841 |
|
{ |
1842 |
0 |
iSize = selectionGroup.getSize(); |
1843 |
0 |
seqs = selectionGroup.getSequencesInOrder(alignment); |
1844 |
0 |
start = selectionGroup.getStartRes(); |
1845 |
0 |
end = selectionGroup.getEndRes() + 1; |
1846 |
|
} |
1847 |
|
else |
1848 |
|
{ |
1849 |
24 |
if (hasHiddenRows() && exportHiddenSeqs) |
1850 |
|
{ |
1851 |
0 |
AlignmentI fullAlignment = alignment.getHiddenSequences() |
1852 |
|
.getFullAlignment(); |
1853 |
0 |
iSize = fullAlignment.getHeight(); |
1854 |
0 |
seqs = fullAlignment.getSequencesArray(); |
1855 |
0 |
end = fullAlignment.getWidth(); |
1856 |
|
} |
1857 |
|
else |
1858 |
|
{ |
1859 |
24 |
iSize = alignment.getHeight(); |
1860 |
24 |
seqs = alignment.getSequencesArray(); |
1861 |
24 |
end = alignment.getWidth(); |
1862 |
|
} |
1863 |
|
} |
1864 |
|
|
1865 |
24 |
selection = new String[iSize]; |
1866 |
24 |
if (alignment.getHiddenColumns() != null |
1867 |
|
&& alignment.getHiddenColumns().hasHiddenColumns()) |
1868 |
|
{ |
1869 |
206 |
for (i = 0; i < iSize; i++) |
1870 |
|
{ |
1871 |
188 |
Iterator<int[]> blocks = alignment.getHiddenColumns() |
1872 |
|
.getVisContigsIterator(start, end + 1, false); |
1873 |
188 |
selection[i] = seqs[i].getSequenceStringFromIterator(blocks); |
1874 |
|
} |
1875 |
|
} |
1876 |
|
else |
1877 |
|
{ |
1878 |
36 |
for (i = 0; i < iSize; i++) |
1879 |
|
{ |
1880 |
30 |
selection[i] = seqs[i].getSequenceAsString(start, end); |
1881 |
|
} |
1882 |
|
|
1883 |
|
} |
1884 |
24 |
return selection; |
1885 |
|
} |
1886 |
|
|
|
|
| 0% |
Uncovered Elements: 30 (30) |
Complexity: 9 |
Complexity Density: 0.5 |
|
1887 |
0 |
@Override... |
1888 |
|
public List<int[]> getVisibleRegionBoundaries(int min, int max) |
1889 |
|
{ |
1890 |
0 |
ArrayList<int[]> regions = new ArrayList<>(); |
1891 |
0 |
int start = min; |
1892 |
0 |
int end = max; |
1893 |
|
|
1894 |
0 |
do |
1895 |
|
{ |
1896 |
0 |
HiddenColumns hidden = alignment.getHiddenColumns(); |
1897 |
0 |
if (hidden != null && hidden.hasHiddenColumns()) |
1898 |
|
{ |
1899 |
0 |
if (start == 0) |
1900 |
|
{ |
1901 |
0 |
start = hidden.visibleToAbsoluteColumn(start); |
1902 |
|
} |
1903 |
|
|
1904 |
0 |
end = hidden.getNextHiddenBoundary(false, start); |
1905 |
0 |
if (start == end) |
1906 |
|
{ |
1907 |
0 |
end = max; |
1908 |
|
} |
1909 |
0 |
if (end > max) |
1910 |
|
{ |
1911 |
0 |
end = max; |
1912 |
|
} |
1913 |
|
} |
1914 |
|
|
1915 |
0 |
regions.add(new int[] { start, end }); |
1916 |
|
|
1917 |
0 |
if (hidden != null && hidden.hasHiddenColumns()) |
1918 |
|
{ |
1919 |
0 |
start = hidden.visibleToAbsoluteColumn(end); |
1920 |
0 |
start = hidden.getNextHiddenBoundary(true, start) + 1; |
1921 |
|
} |
1922 |
0 |
} while (end < max); |
1923 |
|
|
1924 |
|
|
1925 |
|
|
1926 |
0 |
return regions; |
1927 |
|
} |
1928 |
|
|
|
|
| 71.4% |
Uncovered Elements: 4 (14) |
Complexity: 4 |
Complexity Density: 0.4 |
|
1929 |
1 |
@Override... |
1930 |
|
public List<AlignmentAnnotation> getVisibleAlignmentAnnotation( |
1931 |
|
boolean selectedOnly) |
1932 |
|
{ |
1933 |
1 |
ArrayList<AlignmentAnnotation> ala = new ArrayList<>(); |
1934 |
1 |
AlignmentAnnotation[] aa; |
1935 |
? |
if ((aa = alignment.getAlignmentAnnotation()) != null) |
1936 |
|
{ |
1937 |
1 |
for (AlignmentAnnotation annot : aa) |
1938 |
|
{ |
1939 |
4 |
AlignmentAnnotation clone = new AlignmentAnnotation(annot); |
1940 |
4 |
if (selectedOnly && selectionGroup != null) |
1941 |
|
{ |
1942 |
4 |
clone.makeVisibleAnnotation(selectionGroup.getStartRes(), |
1943 |
|
selectionGroup.getEndRes(), alignment.getHiddenColumns()); |
1944 |
|
} |
1945 |
|
else |
1946 |
|
{ |
1947 |
0 |
clone.makeVisibleAnnotation(alignment.getHiddenColumns()); |
1948 |
|
} |
1949 |
4 |
ala.add(clone); |
1950 |
|
} |
1951 |
|
} |
1952 |
1 |
return ala; |
1953 |
|
} |
1954 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1955 |
1678 |
@Override... |
1956 |
|
public boolean isPadGaps() |
1957 |
|
{ |
1958 |
1678 |
return padGaps; |
1959 |
|
} |
1960 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1961 |
508 |
@Override... |
1962 |
|
public void setPadGaps(boolean padGaps) |
1963 |
|
{ |
1964 |
508 |
this.padGaps = padGaps; |
1965 |
|
} |
1966 |
|
|
1967 |
|
|
1968 |
|
|
1969 |
|
|
1970 |
|
|
1971 |
|
@param |
1972 |
|
|
|
|
| 78.8% |
Uncovered Elements: 7 (33) |
Complexity: 10 |
Complexity Density: 0.53 |
|
1973 |
549 |
@Override... |
1974 |
|
public void alignmentChanged(AlignmentViewPanel ap) |
1975 |
|
{ |
1976 |
549 |
if (isPadGaps()) |
1977 |
|
{ |
1978 |
310 |
alignment.padGaps(); |
1979 |
|
} |
1980 |
549 |
if (autoCalculateConsensus) |
1981 |
|
{ |
1982 |
549 |
updateConsensus(ap); |
1983 |
549 |
updateSecondaryStructureConsensus(ap); |
1984 |
|
} |
1985 |
549 |
if (hconsensus != null && autoCalculateConsensus) |
1986 |
|
{ |
1987 |
544 |
updateConservation(ap); |
1988 |
|
} |
1989 |
549 |
if (autoCalculateStrucConsensus) |
1990 |
|
{ |
1991 |
549 |
updateStrucConsensus(ap); |
1992 |
|
} |
1993 |
|
|
1994 |
|
|
1995 |
549 |
int alWidth = alignment.getWidth(); |
1996 |
549 |
List<SequenceGroup> groups = alignment.getGroups(); |
1997 |
549 |
if (groups != null) |
1998 |
|
{ |
1999 |
549 |
for (SequenceGroup sg : groups) |
2000 |
|
{ |
2001 |
175 |
if (sg.getEndRes() > alWidth) |
2002 |
|
{ |
2003 |
0 |
sg.setEndRes(alWidth - 1); |
2004 |
|
} |
2005 |
|
} |
2006 |
|
} |
2007 |
|
|
2008 |
549 |
if (selectionGroup != null && selectionGroup.getEndRes() > alWidth) |
2009 |
|
{ |
2010 |
0 |
selectionGroup.setEndRes(alWidth - 1); |
2011 |
|
} |
2012 |
|
|
2013 |
549 |
updateAllColourSchemes(); |
2014 |
549 |
calculator.restartWorkers(); |
2015 |
|
|
2016 |
|
} |
2017 |
|
|
2018 |
|
|
2019 |
|
|
2020 |
|
|
|
|
| 87.5% |
Uncovered Elements: 2 (16) |
Complexity: 4 |
Complexity Density: 0.4 |
|
2021 |
549 |
void updateAllColourSchemes()... |
2022 |
|
{ |
2023 |
549 |
ResidueShaderI rs = residueShading; |
2024 |
549 |
if (rs != null) |
2025 |
|
{ |
2026 |
549 |
rs.alignmentChanged(alignment, hiddenRepSequences); |
2027 |
|
|
2028 |
549 |
rs.setConsensus(hconsensus); |
2029 |
549 |
if (rs.conservationApplied()) |
2030 |
|
{ |
2031 |
3 |
rs.setConservation(Conservation.calculateConservation("All", |
2032 |
|
alignment.getSequences(), 0, alignment.getWidth(), false, |
2033 |
|
getConsPercGaps(), false)); |
2034 |
|
} |
2035 |
|
} |
2036 |
|
|
2037 |
549 |
for (SequenceGroup sg : alignment.getGroups()) |
2038 |
|
{ |
2039 |
175 |
if (sg.cs != null) |
2040 |
|
{ |
2041 |
175 |
sg.cs.alignmentChanged(sg, hiddenRepSequences); |
2042 |
|
} |
2043 |
175 |
sg.recalcConservation(); |
2044 |
|
} |
2045 |
|
} |
2046 |
|
|
|
|
| 92.9% |
Uncovered Elements: 1 (14) |
Complexity: 4 |
Complexity Density: 0.4 |
|
2047 |
508 |
protected void initAutoAnnotation()... |
2048 |
|
{ |
2049 |
|
|
2050 |
|
|
2051 |
|
|
2052 |
|
|
2053 |
508 |
if (hconsensus == null && !isDataset) |
2054 |
|
{ |
2055 |
508 |
if (!alignment.isNucleotide()) |
2056 |
|
{ |
2057 |
397 |
initConservation(); |
2058 |
397 |
initQuality(); |
2059 |
397 |
initSSConsensus(); |
2060 |
|
} |
2061 |
|
else |
2062 |
|
{ |
2063 |
111 |
initRNAStructure(); |
2064 |
|
} |
2065 |
508 |
consensus = new AlignmentAnnotation("Consensus", |
2066 |
|
MessageManager.getString("label.consensus_descr"), |
2067 |
|
new Annotation[1], 0f, 100f, AlignmentAnnotation.BAR_GRAPH); |
2068 |
|
|
2069 |
|
|
2070 |
508 |
initConsensus(consensus); |
2071 |
508 |
initGapCounts(); |
2072 |
508 |
initComplementConsensus(); |
2073 |
|
} |
2074 |
|
} |
2075 |
|
|
2076 |
|
|
2077 |
|
|
2078 |
|
|
2079 |
|
|
|
|
| 90.9% |
Uncovered Elements: 2 (22) |
Complexity: 7 |
Complexity Density: 0.5 |
|
2080 |
518 |
public boolean initComplementConsensus()... |
2081 |
|
{ |
2082 |
518 |
if (!alignment.isNucleotide()) |
2083 |
|
{ |
2084 |
406 |
final List<AlignedCodonFrame> codonMappings = alignment |
2085 |
|
.getCodonFrames(); |
2086 |
406 |
if (codonMappings != null && !codonMappings.isEmpty()) |
2087 |
|
{ |
2088 |
4 |
boolean doConsensus = false; |
2089 |
4 |
for (AlignedCodonFrame mapping : codonMappings) |
2090 |
|
{ |
2091 |
|
|
2092 |
4 |
MapList[] mapLists = mapping.getdnaToProt(); |
2093 |
|
|
2094 |
|
|
2095 |
4 |
if (mapLists.length > 0 && mapLists[0].getFromRatio() == 3) |
2096 |
|
{ |
2097 |
4 |
doConsensus = true; |
2098 |
4 |
break; |
2099 |
|
} |
2100 |
|
} |
2101 |
4 |
if (doConsensus) |
2102 |
|
{ |
2103 |
4 |
complementConsensus = new AlignmentAnnotation("cDNA Consensus", |
2104 |
|
MessageManager |
2105 |
|
.getString("label.complement_consensus_descr"), |
2106 |
|
new Annotation[1], 0f, 100f, |
2107 |
|
AlignmentAnnotation.BAR_GRAPH); |
2108 |
4 |
initConsensus(complementConsensus); |
2109 |
4 |
return true; |
2110 |
|
} |
2111 |
|
} |
2112 |
|
} |
2113 |
514 |
return false; |
2114 |
|
} |
2115 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
2116 |
512 |
private void initConsensus(AlignmentAnnotation aa)... |
2117 |
|
{ |
2118 |
512 |
aa.hasText = true; |
2119 |
512 |
aa.autoCalculated = true; |
2120 |
|
|
2121 |
512 |
if (showConsensus) |
2122 |
|
{ |
2123 |
511 |
alignment.addAnnotation(aa); |
2124 |
|
} |
2125 |
|
} |
2126 |
|
|
|
|
| 20% |
Uncovered Elements: 8 (10) |
Complexity: 4 |
Complexity Density: 0.67 |
|
2127 |
397 |
private void initSSConsensus()... |
2128 |
|
{ |
2129 |
397 |
if (!alignment.isNucleotide() && showSSConsensus) |
2130 |
|
{ |
2131 |
0 |
if (secondaryStructureConsensus == null) |
2132 |
|
{ |
2133 |
0 |
secondaryStructureConsensus = new AlignmentAnnotation( |
2134 |
|
MessageManager.getString("label.ssconsensus_label"), |
2135 |
|
MessageManager.getString("label.ssconsensus_descr"), |
2136 |
|
new Annotation[1], 0f, 100f, AlignmentAnnotation.BAR_GRAPH); |
2137 |
|
|
2138 |
0 |
secondaryStructureConsensus.hasText = true; |
2139 |
0 |
secondaryStructureConsensus.autoCalculated = true; |
2140 |
|
} |
2141 |
0 |
alignment.addAnnotation(secondaryStructureConsensus); |
2142 |
|
} |
2143 |
|
} |
2144 |
|
|
2145 |
|
|
2146 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
|
2147 |
508 |
private void initGapCounts()... |
2148 |
|
{ |
2149 |
508 |
if (showOccupancy) |
2150 |
|
{ |
2151 |
504 |
gapcounts = new AlignmentAnnotation("Occupancy", |
2152 |
|
MessageManager.getString("label.occupancy_descr"), |
2153 |
|
new Annotation[1], 0f, alignment.getHeight(), |
2154 |
|
AlignmentAnnotation.BAR_GRAPH); |
2155 |
504 |
gapcounts.hasText = true; |
2156 |
504 |
gapcounts.autoCalculated = true; |
2157 |
504 |
gapcounts.scaleColLabel = true; |
2158 |
504 |
gapcounts.graph = AlignmentAnnotation.BAR_GRAPH; |
2159 |
|
|
2160 |
504 |
alignment.addAnnotation(gapcounts); |
2161 |
|
} |
2162 |
|
} |
2163 |
|
|
|
|
| 90% |
Uncovered Elements: 1 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
2164 |
397 |
private void initConservation()... |
2165 |
|
{ |
2166 |
397 |
if (showConservation) |
2167 |
|
{ |
2168 |
396 |
if (conservation == null) |
2169 |
|
{ |
2170 |
396 |
conservation = new AlignmentAnnotation("Conservation", |
2171 |
|
MessageManager.formatMessage("label.conservation_descr", |
2172 |
|
getConsPercGaps()), |
2173 |
|
new Annotation[1], 0f, 11f, AlignmentAnnotation.BAR_GRAPH); |
2174 |
396 |
conservation.hasText = true; |
2175 |
396 |
conservation.autoCalculated = true; |
2176 |
396 |
alignment.addAnnotation(conservation); |
2177 |
|
} |
2178 |
|
} |
2179 |
|
} |
2180 |
|
|
|
|
| 80% |
Uncovered Elements: 2 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
2181 |
397 |
private void initQuality()... |
2182 |
|
{ |
2183 |
397 |
if (showQuality) |
2184 |
|
{ |
2185 |
397 |
if (quality == null) |
2186 |
|
{ |
2187 |
397 |
quality = new AlignmentAnnotation("Quality", |
2188 |
|
MessageManager.getString("label.quality_descr"), |
2189 |
|
new Annotation[1], 0f, 11f, AlignmentAnnotation.BAR_GRAPH); |
2190 |
397 |
quality.hasText = true; |
2191 |
397 |
quality.autoCalculated = true; |
2192 |
397 |
alignment.addAnnotation(quality); |
2193 |
|
} |
2194 |
|
} |
2195 |
|
} |
2196 |
|
|
|
|
| 90% |
Uncovered Elements: 1 (10) |
Complexity: 4 |
Complexity Density: 0.67 |
|
2197 |
111 |
private void initRNAStructure()... |
2198 |
|
{ |
2199 |
111 |
if (alignment.hasRNAStructure() && strucConsensus == null) |
2200 |
|
{ |
2201 |
2 |
strucConsensus = new AlignmentAnnotation("StrucConsensus", |
2202 |
|
MessageManager.getString("label.strucconsensus_descr"), |
2203 |
|
new Annotation[1], 0f, 100f, AlignmentAnnotation.BAR_GRAPH); |
2204 |
2 |
strucConsensus.hasText = true; |
2205 |
2 |
strucConsensus.autoCalculated = true; |
2206 |
|
|
2207 |
2 |
if (showConsensus) |
2208 |
|
{ |
2209 |
2 |
alignment.addAnnotation(strucConsensus); |
2210 |
|
} |
2211 |
|
} |
2212 |
|
} |
2213 |
|
|
2214 |
|
|
2215 |
|
|
2216 |
|
|
2217 |
|
@see |
2218 |
|
|
|
|
| 91.7% |
Uncovered Elements: 4 (48) |
Complexity: 11 |
Complexity Density: 0.39 |
|
2219 |
3755 |
@Override... |
2220 |
|
public int calcPanelHeight() |
2221 |
|
{ |
2222 |
|
|
2223 |
3755 |
AlignmentAnnotation[] anns = getAlignment().getAlignmentAnnotation(); |
2224 |
3755 |
int height = 0; |
2225 |
3755 |
int charHeight = getCharHeight(); |
2226 |
3755 |
if (anns != null) |
2227 |
|
{ |
2228 |
3755 |
BitSet graphgrp = new BitSet(); |
2229 |
3755 |
for (AlignmentAnnotation aa : anns) |
2230 |
|
{ |
2231 |
17543 |
if (aa == null) |
2232 |
|
{ |
2233 |
0 |
jalview.bin.Console.errPrintln("Null annotation row: ignoring."); |
2234 |
0 |
continue; |
2235 |
|
} |
2236 |
17543 |
if (!aa.isForDisplay()) |
2237 |
|
{ |
2238 |
1377 |
continue; |
2239 |
|
} |
2240 |
16166 |
if (aa.graphGroup > -1) |
2241 |
|
{ |
2242 |
300 |
if (graphgrp.get(aa.graphGroup)) |
2243 |
|
{ |
2244 |
150 |
continue; |
2245 |
|
} |
2246 |
|
else |
2247 |
|
{ |
2248 |
150 |
graphgrp.set(aa.graphGroup); |
2249 |
|
} |
2250 |
|
} |
2251 |
16016 |
aa.height = 0; |
2252 |
|
|
2253 |
16016 |
if (aa.hasText) |
2254 |
|
{ |
2255 |
14194 |
aa.height += charHeight; |
2256 |
|
} |
2257 |
|
|
2258 |
16016 |
if (aa.hasIcons) |
2259 |
|
{ |
2260 |
667 |
aa.height += 16; |
2261 |
|
} |
2262 |
|
|
2263 |
16016 |
if (aa.graph > 0) |
2264 |
|
{ |
2265 |
14960 |
aa.height += aa.graphHeight + 20; |
2266 |
|
} |
2267 |
|
|
2268 |
16016 |
if (aa.height == 0) |
2269 |
|
{ |
2270 |
156 |
aa.height = 20; |
2271 |
|
} |
2272 |
|
|
2273 |
16016 |
height += aa.height; |
2274 |
|
} |
2275 |
|
} |
2276 |
3755 |
if (height == 0) |
2277 |
|
{ |
2278 |
|
|
2279 |
18 |
height = 20; |
2280 |
|
} |
2281 |
3755 |
return height; |
2282 |
|
} |
2283 |
|
|
|
|
| 80% |
Uncovered Elements: 11 (55) |
Complexity: 13 |
Complexity Density: 0.35 |
|
2284 |
130 |
@Override... |
2285 |
|
public void updateGroupAnnotationSettings(boolean applyGlobalSettings, |
2286 |
|
boolean preserveNewGroupSettings) |
2287 |
|
{ |
2288 |
130 |
boolean updateCalcs = false; |
2289 |
130 |
boolean conv = isShowGroupConservation(); |
2290 |
130 |
boolean cons = isShowGroupConsensus(); |
2291 |
130 |
boolean sscons = isShowGroupSSConsensus(); |
2292 |
130 |
boolean showprf = isShowSequenceLogo(); |
2293 |
130 |
boolean showSSprf = isShowSequenceSSLogo(); |
2294 |
130 |
boolean showConsHist = isShowConsensusHistogram(); |
2295 |
130 |
boolean showSSConsHist = isShowSSConsensusHistogram(); |
2296 |
130 |
boolean normLogo = isNormaliseSequenceLogo(); |
2297 |
|
|
2298 |
|
|
2299 |
|
|
2300 |
|
|
2301 |
|
|
2302 |
|
|
2303 |
|
|
2304 |
|
|
2305 |
|
|
2306 |
|
|
2307 |
|
|
2308 |
|
|
2309 |
130 |
AlignmentAnnotation[] aan = alignment.getAlignmentAnnotation(); |
2310 |
130 |
List<SequenceGroup> oldrfs = new ArrayList<>(); |
2311 |
130 |
if (aan != null) |
2312 |
|
{ |
2313 |
1021 |
for (int an = 0; an < aan.length; an++) |
2314 |
|
{ |
2315 |
891 |
if (aan[an].autoCalculated && aan[an].groupRef != null) |
2316 |
|
{ |
2317 |
0 |
oldrfs.add(aan[an].groupRef); |
2318 |
0 |
alignment.deleteAnnotation(aan[an], false); |
2319 |
|
} |
2320 |
|
} |
2321 |
|
} |
2322 |
130 |
if (alignment.getGroups() != null) |
2323 |
|
{ |
2324 |
130 |
for (SequenceGroup sg : alignment.getGroups()) |
2325 |
|
{ |
2326 |
56 |
updateCalcs = false; |
2327 |
56 |
if (applyGlobalSettings |
2328 |
|
|| (!preserveNewGroupSettings && !oldrfs.contains(sg))) |
2329 |
|
{ |
2330 |
|
|
2331 |
9 |
sg.setshowSequenceLogo(showprf); |
2332 |
9 |
sg.setshowSequenceSSLogo(showSSprf); |
2333 |
9 |
sg.setShowConsensusHistogram(showConsHist); |
2334 |
9 |
sg.setShowSSConsensusHistogram(showSSConsHist); |
2335 |
9 |
sg.setNormaliseSequenceLogo(normLogo); |
2336 |
|
} |
2337 |
56 |
if (conv) |
2338 |
|
{ |
2339 |
0 |
updateCalcs = true; |
2340 |
0 |
alignment.addAnnotation(sg.getConservationRow(), 0); |
2341 |
|
} |
2342 |
56 |
if (cons) |
2343 |
|
{ |
2344 |
24 |
updateCalcs = true; |
2345 |
24 |
alignment.addAnnotation(sg.getConsensus(), 0); |
2346 |
|
} |
2347 |
56 |
if (sscons) |
2348 |
|
{ |
2349 |
0 |
updateCalcs = true; |
2350 |
0 |
alignment.addAnnotation(sg.getSSConsensus(), 0); |
2351 |
|
} |
2352 |
|
|
2353 |
56 |
if (updateCalcs) |
2354 |
|
{ |
2355 |
24 |
sg.recalcConservation(); |
2356 |
|
} |
2357 |
|
} |
2358 |
|
} |
2359 |
130 |
oldrfs.clear(); |
2360 |
|
} |
2361 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2362 |
32799 |
@Override... |
2363 |
|
public boolean isDisplayReferenceSeq() |
2364 |
|
{ |
2365 |
32799 |
return alignment.hasSeqrep() && viewStyle.isDisplayReferenceSeq(); |
2366 |
|
} |
2367 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2368 |
10 |
@Override... |
2369 |
|
public void setDisplayReferenceSeq(boolean displayReferenceSeq) |
2370 |
|
{ |
2371 |
10 |
viewStyle.setDisplayReferenceSeq(displayReferenceSeq); |
2372 |
|
} |
2373 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2374 |
5 |
@Override... |
2375 |
|
public boolean isColourByReferenceSeq() |
2376 |
|
{ |
2377 |
5 |
return alignment.hasSeqrep() && viewStyle.isColourByReferenceSeq(); |
2378 |
|
} |
2379 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
2380 |
23572 |
@Override... |
2381 |
|
public Color getSequenceColour(SequenceI seq) |
2382 |
|
{ |
2383 |
23572 |
Color sqc = sequenceColours.get(seq); |
2384 |
23572 |
return (sqc == null ? Color.white : sqc); |
2385 |
|
} |
2386 |
|
|
|
|
| 60% |
Uncovered Elements: 2 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2387 |
1192 |
@Override... |
2388 |
|
public void setSequenceColour(SequenceI seq, Color col) |
2389 |
|
{ |
2390 |
1192 |
if (col == null) |
2391 |
|
{ |
2392 |
0 |
sequenceColours.remove(seq); |
2393 |
|
} |
2394 |
|
else |
2395 |
|
{ |
2396 |
1192 |
sequenceColours.put(seq, col); |
2397 |
|
} |
2398 |
|
} |
2399 |
|
|
|
|
| 50% |
Uncovered Elements: 3 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
2400 |
5 |
@Override... |
2401 |
|
public void updateSequenceIdColours() |
2402 |
|
{ |
2403 |
5 |
for (SequenceGroup sg : alignment.getGroups()) |
2404 |
|
{ |
2405 |
5 |
if (sg.idColour != null) |
2406 |
|
{ |
2407 |
0 |
for (SequenceI s : sg.getSequences(getHiddenRepSequences())) |
2408 |
|
{ |
2409 |
0 |
sequenceColours.put(s, sg.idColour); |
2410 |
|
} |
2411 |
|
} |
2412 |
|
} |
2413 |
|
} |
2414 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2415 |
0 |
@Override... |
2416 |
|
public void clearSequenceColours() |
2417 |
|
{ |
2418 |
0 |
sequenceColours.clear(); |
2419 |
|
} |
2420 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2421 |
1058 |
@Override... |
2422 |
|
public AlignViewportI getCodingComplement() |
2423 |
|
{ |
2424 |
1058 |
return this.codingComplement; |
2425 |
|
} |
2426 |
|
|
2427 |
|
|
2428 |
|
|
2429 |
|
|
2430 |
|
|
|
|
| 77.8% |
Uncovered Elements: 2 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
2431 |
6 |
@Override... |
2432 |
|
public void setCodingComplement(AlignViewportI av) |
2433 |
|
{ |
2434 |
6 |
if (this == av) |
2435 |
|
{ |
2436 |
0 |
jalview.bin.Console |
2437 |
|
.errPrintln("Ignoring recursive setCodingComplement request"); |
2438 |
|
} |
2439 |
|
else |
2440 |
|
{ |
2441 |
6 |
this.codingComplement = av; |
2442 |
|
|
2443 |
6 |
if (av.getCodingComplement() != this) |
2444 |
|
{ |
2445 |
3 |
av.setCodingComplement(this); |
2446 |
|
} |
2447 |
|
} |
2448 |
|
} |
2449 |
|
|
|
|
| 66.7% |
Uncovered Elements: 1 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
2450 |
25 |
@Override... |
2451 |
|
public boolean isNucleotide() |
2452 |
|
{ |
2453 |
25 |
return getAlignment() == null ? false : getAlignment().isNucleotide(); |
2454 |
|
} |
2455 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2456 |
1605071 |
@Override... |
2457 |
|
public FeaturesDisplayedI getFeaturesDisplayed() |
2458 |
|
{ |
2459 |
1606335 |
return featuresDisplayed; |
2460 |
|
} |
2461 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2462 |
112 |
@Override... |
2463 |
|
public void setFeaturesDisplayed(FeaturesDisplayedI featuresDisplayedI) |
2464 |
|
{ |
2465 |
112 |
featuresDisplayed = featuresDisplayedI; |
2466 |
|
} |
2467 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2468 |
83 |
@Override... |
2469 |
|
public boolean areFeaturesDisplayed() |
2470 |
|
{ |
2471 |
83 |
return featuresDisplayed != null |
2472 |
|
&& featuresDisplayed.getRegisteredFeaturesCount() > 0; |
2473 |
|
} |
2474 |
|
|
2475 |
|
|
2476 |
|
|
2477 |
|
|
2478 |
|
@param |
2479 |
|
|
2480 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2481 |
141 |
@Override... |
2482 |
|
public void setShowSequenceFeatures(boolean b) |
2483 |
|
{ |
2484 |
141 |
viewStyle.setShowSequenceFeatures(b); |
2485 |
|
} |
2486 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2487 |
384501 |
@Override... |
2488 |
|
public boolean isShowSequenceFeatures() |
2489 |
|
{ |
2490 |
384596 |
return viewStyle.isShowSequenceFeatures(); |
2491 |
|
} |
2492 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2493 |
0 |
@Override... |
2494 |
|
public void setShowSequenceFeaturesHeight(boolean selected) |
2495 |
|
{ |
2496 |
0 |
viewStyle.setShowSequenceFeaturesHeight(selected); |
2497 |
|
} |
2498 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2499 |
0 |
@Override... |
2500 |
|
public boolean isShowSequenceFeaturesHeight() |
2501 |
|
{ |
2502 |
0 |
return viewStyle.isShowSequenceFeaturesHeight(); |
2503 |
|
} |
2504 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2505 |
680 |
@Override... |
2506 |
|
public void setShowAnnotation(boolean b) |
2507 |
|
{ |
2508 |
680 |
viewStyle.setShowAnnotation(b); |
2509 |
|
} |
2510 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2511 |
4670 |
@Override... |
2512 |
|
public boolean isShowAnnotation() |
2513 |
|
{ |
2514 |
4670 |
return viewStyle.isShowAnnotation(); |
2515 |
|
} |
2516 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2517 |
23377 |
@Override... |
2518 |
|
public boolean isRightAlignIds() |
2519 |
|
{ |
2520 |
23377 |
return viewStyle.isRightAlignIds(); |
2521 |
|
} |
2522 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2523 |
593 |
@Override... |
2524 |
|
public void setRightAlignIds(boolean rightAlignIds) |
2525 |
|
{ |
2526 |
593 |
viewStyle.setRightAlignIds(rightAlignIds); |
2527 |
|
} |
2528 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2529 |
1040 |
@Override... |
2530 |
|
public boolean getConservationSelected() |
2531 |
|
{ |
2532 |
1040 |
return viewStyle.getConservationSelected(); |
2533 |
|
} |
2534 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2535 |
85 |
@Override... |
2536 |
|
public void setShowBoxes(boolean state) |
2537 |
|
{ |
2538 |
85 |
viewStyle.setShowBoxes(state); |
2539 |
|
} |
2540 |
|
|
2541 |
|
|
2542 |
|
@return |
2543 |
|
@see |
2544 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2545 |
963543 |
@Override... |
2546 |
|
public Color getTextColour() |
2547 |
|
{ |
2548 |
963543 |
return viewStyle.getTextColour(); |
2549 |
|
} |
2550 |
|
|
2551 |
|
|
2552 |
|
@return |
2553 |
|
@see |
2554 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2555 |
46 |
@Override... |
2556 |
|
public Color getTextColour2() |
2557 |
|
{ |
2558 |
46 |
return viewStyle.getTextColour2(); |
2559 |
|
} |
2560 |
|
|
2561 |
|
|
2562 |
|
@return |
2563 |
|
@see |
2564 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2565 |
415871 |
@Override... |
2566 |
|
public int getThresholdTextColour() |
2567 |
|
{ |
2568 |
415870 |
return viewStyle.getThresholdTextColour(); |
2569 |
|
} |
2570 |
|
|
2571 |
|
|
2572 |
|
@return |
2573 |
|
@see |
2574 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2575 |
0 |
@Override... |
2576 |
|
public boolean isConservationColourSelected() |
2577 |
|
{ |
2578 |
0 |
return viewStyle.isConservationColourSelected(); |
2579 |
|
} |
2580 |
|
|
2581 |
|
|
2582 |
|
@return |
2583 |
|
@see |
2584 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2585 |
4230 |
@Override... |
2586 |
|
public boolean isRenderGaps() |
2587 |
|
{ |
2588 |
4230 |
return viewStyle.isRenderGaps(); |
2589 |
|
} |
2590 |
|
|
2591 |
|
|
2592 |
|
@return |
2593 |
|
@see |
2594 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2595 |
672 |
@Override... |
2596 |
|
public boolean isShowColourText() |
2597 |
|
{ |
2598 |
672 |
return viewStyle.isShowColourText(); |
2599 |
|
} |
2600 |
|
|
2601 |
|
|
2602 |
|
@param |
2603 |
|
@see |
2604 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2605 |
0 |
@Override... |
2606 |
|
public void setConservationColourSelected( |
2607 |
|
boolean conservationColourSelected) |
2608 |
|
{ |
2609 |
0 |
viewStyle.setConservationColourSelected(conservationColourSelected); |
2610 |
|
} |
2611 |
|
|
2612 |
|
|
2613 |
|
@param |
2614 |
|
@see |
2615 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2616 |
0 |
@Override... |
2617 |
|
public void setShowColourText(boolean showColourText) |
2618 |
|
{ |
2619 |
0 |
viewStyle.setShowColourText(showColourText); |
2620 |
|
} |
2621 |
|
|
2622 |
|
|
2623 |
|
@param |
2624 |
|
@see |
2625 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2626 |
85 |
@Override... |
2627 |
|
public void setTextColour(Color textColour) |
2628 |
|
{ |
2629 |
85 |
viewStyle.setTextColour(textColour); |
2630 |
|
} |
2631 |
|
|
2632 |
|
|
2633 |
|
@param |
2634 |
|
@see |
2635 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2636 |
85 |
@Override... |
2637 |
|
public void setThresholdTextColour(int thresholdTextColour) |
2638 |
|
{ |
2639 |
85 |
viewStyle.setThresholdTextColour(thresholdTextColour); |
2640 |
|
} |
2641 |
|
|
2642 |
|
|
2643 |
|
@param |
2644 |
|
@see |
2645 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2646 |
85 |
@Override... |
2647 |
|
public void setTextColour2(Color textColour2) |
2648 |
|
{ |
2649 |
85 |
viewStyle.setTextColour2(textColour2); |
2650 |
|
} |
2651 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2652 |
143 |
@Override... |
2653 |
|
public ViewStyleI getViewStyle() |
2654 |
|
{ |
2655 |
143 |
return new ViewStyle(viewStyle); |
2656 |
|
} |
2657 |
|
|
|
|
| 80% |
Uncovered Elements: 1 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2658 |
86 |
@Override... |
2659 |
|
public void setViewStyle(ViewStyleI settingsForView) |
2660 |
|
{ |
2661 |
86 |
viewStyle = new ViewStyle(settingsForView); |
2662 |
86 |
if (residueShading != null) |
2663 |
|
{ |
2664 |
86 |
residueShading.setConservationApplied( |
2665 |
|
settingsForView.isConservationColourSelected()); |
2666 |
|
} |
2667 |
|
} |
2668 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2669 |
0 |
@Override... |
2670 |
|
public boolean sameStyle(ViewStyleI them) |
2671 |
|
{ |
2672 |
0 |
return viewStyle.sameStyle(them); |
2673 |
|
} |
2674 |
|
|
2675 |
|
|
2676 |
|
@return |
2677 |
|
@see |
2678 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2679 |
7185 |
@Override... |
2680 |
|
public int getIdWidth() |
2681 |
|
{ |
2682 |
7185 |
return viewStyle.getIdWidth(); |
2683 |
|
} |
2684 |
|
|
2685 |
|
|
2686 |
|
@param |
2687 |
|
@see |
2688 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2689 |
952 |
@Override... |
2690 |
|
public void setIdWidth(int i) |
2691 |
|
{ |
2692 |
952 |
viewStyle.setIdWidth(i); |
2693 |
|
} |
2694 |
|
|
2695 |
|
|
2696 |
|
@return |
2697 |
|
@see |
2698 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2699 |
672 |
@Override... |
2700 |
|
public boolean isCentreColumnLabels() |
2701 |
|
{ |
2702 |
672 |
return viewStyle.isCentreColumnLabels(); |
2703 |
|
} |
2704 |
|
|
2705 |
|
|
2706 |
|
@param |
2707 |
|
@see |
2708 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2709 |
593 |
@Override... |
2710 |
|
public void setCentreColumnLabels(boolean centreColumnLabels) |
2711 |
|
{ |
2712 |
593 |
viewStyle.setCentreColumnLabels(centreColumnLabels); |
2713 |
|
} |
2714 |
|
|
2715 |
|
|
2716 |
|
@param |
2717 |
|
@see |
2718 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2719 |
593 |
@Override... |
2720 |
|
public void setShowDBRefs(boolean showdbrefs) |
2721 |
|
{ |
2722 |
593 |
viewStyle.setShowDBRefs(showdbrefs); |
2723 |
|
} |
2724 |
|
|
2725 |
|
|
2726 |
|
@return |
2727 |
|
@see |
2728 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2729 |
718 |
@Override... |
2730 |
|
public boolean isShowDBRefs() |
2731 |
|
{ |
2732 |
718 |
return viewStyle.isShowDBRefs(); |
2733 |
|
} |
2734 |
|
|
2735 |
|
|
2736 |
|
@return |
2737 |
|
@see |
2738 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2739 |
718 |
@Override... |
2740 |
|
public boolean isShowNPFeats() |
2741 |
|
{ |
2742 |
718 |
return viewStyle.isShowNPFeats(); |
2743 |
|
} |
2744 |
|
|
2745 |
|
|
2746 |
|
@param |
2747 |
|
@see |
2748 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2749 |
593 |
@Override... |
2750 |
|
public void setShowNPFeats(boolean shownpfeats) |
2751 |
|
{ |
2752 |
593 |
viewStyle.setShowNPFeats(shownpfeats); |
2753 |
|
} |
2754 |
|
|
2755 |
|
public abstract StructureSelectionManager getStructureSelectionManager(); |
2756 |
|
|
2757 |
|
|
2758 |
|
|
2759 |
|
|
2760 |
|
@param |
2761 |
|
|
|
|
| 85.7% |
Uncovered Elements: 1 (7) |
Complexity: 2 |
Complexity Density: 0.4 |
|
2762 |
1 |
public void addToHistoryList(CommandI command)... |
2763 |
|
{ |
2764 |
1 |
if (this.historyList != null) |
2765 |
|
{ |
2766 |
1 |
this.historyList.push(command); |
2767 |
1 |
broadcastCommand(command, false); |
2768 |
1 |
setSavedUpToDate(false); |
2769 |
1 |
Jalview2XML.setStateSavedUpToDate(false); |
2770 |
|
} |
2771 |
|
} |
2772 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2773 |
1 |
protected void broadcastCommand(CommandI command, boolean undo)... |
2774 |
|
{ |
2775 |
1 |
getStructureSelectionManager().commandPerformed(command, undo, |
2776 |
|
getVamsasSource()); |
2777 |
|
} |
2778 |
|
|
2779 |
|
|
2780 |
|
|
2781 |
|
|
2782 |
|
@param |
2783 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
2784 |
0 |
public void addToRedoList(CommandI command)... |
2785 |
|
{ |
2786 |
0 |
if (this.redoList != null) |
2787 |
|
{ |
2788 |
0 |
this.redoList.push(command); |
2789 |
|
} |
2790 |
0 |
broadcastCommand(command, true); |
2791 |
|
} |
2792 |
|
|
2793 |
|
|
2794 |
|
|
2795 |
|
|
|
|
| 75% |
Uncovered Elements: 1 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
2796 |
1 |
public void clearRedoList()... |
2797 |
|
{ |
2798 |
1 |
if (this.redoList != null) |
2799 |
|
{ |
2800 |
1 |
this.redoList.clear(); |
2801 |
|
} |
2802 |
|
} |
2803 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2804 |
53 |
public void setHistoryList(Deque<CommandI> list)... |
2805 |
|
{ |
2806 |
53 |
this.historyList = list; |
2807 |
|
} |
2808 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2809 |
1278 |
public Deque<CommandI> getHistoryList()... |
2810 |
|
{ |
2811 |
1278 |
return this.historyList; |
2812 |
|
} |
2813 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2814 |
53 |
public void setRedoList(Deque<CommandI> list)... |
2815 |
|
{ |
2816 |
53 |
this.redoList = list; |
2817 |
|
} |
2818 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2819 |
1275 |
public Deque<CommandI> getRedoList()... |
2820 |
|
{ |
2821 |
1275 |
return this.redoList; |
2822 |
|
} |
2823 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2824 |
1 |
@Override... |
2825 |
|
public VamsasSource getVamsasSource() |
2826 |
|
{ |
2827 |
1 |
return this; |
2828 |
|
} |
2829 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2830 |
3617 |
public SequenceAnnotationOrder getSortAnnotationsBy()... |
2831 |
|
{ |
2832 |
3617 |
return sortAnnotationsBy; |
2833 |
|
} |
2834 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2835 |
0 |
public void setSortAnnotationsBy(... |
2836 |
|
SequenceAnnotationOrder sortAnnotationsBy) |
2837 |
|
{ |
2838 |
0 |
this.sortAnnotationsBy = sortAnnotationsBy; |
2839 |
|
} |
2840 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2841 |
3617 |
public boolean isShowAutocalculatedAbove()... |
2842 |
|
{ |
2843 |
3617 |
return showAutocalculatedAbove; |
2844 |
|
} |
2845 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2846 |
452 |
public void setShowAutocalculatedAbove(boolean showAutocalculatedAbove)... |
2847 |
|
{ |
2848 |
452 |
this.showAutocalculatedAbove = showAutocalculatedAbove; |
2849 |
|
} |
2850 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2851 |
3 |
@Override... |
2852 |
|
public boolean isScaleProteinAsCdna() |
2853 |
|
{ |
2854 |
3 |
return viewStyle.isScaleProteinAsCdna(); |
2855 |
|
} |
2856 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2857 |
0 |
@Override... |
2858 |
|
public void setScaleProteinAsCdna(boolean b) |
2859 |
|
{ |
2860 |
0 |
viewStyle.setScaleProteinAsCdna(b); |
2861 |
|
} |
2862 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2863 |
0 |
@Override... |
2864 |
|
public boolean isProteinFontAsCdna() |
2865 |
|
{ |
2866 |
0 |
return viewStyle.isProteinFontAsCdna(); |
2867 |
|
} |
2868 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2869 |
0 |
@Override... |
2870 |
|
public void setProteinFontAsCdna(boolean b) |
2871 |
|
{ |
2872 |
0 |
viewStyle.setProteinFontAsCdna(b); |
2873 |
|
} |
2874 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2875 |
85 |
@Override... |
2876 |
|
public void setShowComplementFeatures(boolean b) |
2877 |
|
{ |
2878 |
85 |
viewStyle.setShowComplementFeatures(b); |
2879 |
|
} |
2880 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2881 |
381892 |
@Override... |
2882 |
|
public boolean isShowComplementFeatures() |
2883 |
|
{ |
2884 |
381953 |
return viewStyle.isShowComplementFeatures(); |
2885 |
|
} |
2886 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2887 |
85 |
@Override... |
2888 |
|
public void setShowComplementFeaturesOnTop(boolean b) |
2889 |
|
{ |
2890 |
85 |
viewStyle.setShowComplementFeaturesOnTop(b); |
2891 |
|
} |
2892 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2893 |
47 |
@Override... |
2894 |
|
public boolean isShowComplementFeaturesOnTop() |
2895 |
|
{ |
2896 |
47 |
return viewStyle.isShowComplementFeaturesOnTop(); |
2897 |
|
} |
2898 |
|
|
2899 |
|
|
2900 |
|
@return |
2901 |
|
|
2902 |
|
@return |
2903 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2904 |
50 |
@Override... |
2905 |
|
public final boolean isFollowHighlight() |
2906 |
|
{ |
2907 |
50 |
return followHighlight; |
2908 |
|
} |
2909 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2910 |
85 |
@Override... |
2911 |
|
public final void setFollowHighlight(boolean b) |
2912 |
|
{ |
2913 |
85 |
this.followHighlight = b; |
2914 |
|
} |
2915 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
2916 |
50616 |
@Override... |
2917 |
|
public ViewportRanges getRanges() |
2918 |
|
{ |
2919 |
50616 |
return ranges; |
2920 |
|
} |
2921 |
|
|
2922 |
|
|
2923 |
|
|
2924 |
|
|
2925 |
|
|
2926 |
|
@param |
2927 |
|
|
2928 |
|
@return |
2929 |
|
|
|
|
| 74.4% |
Uncovered Elements: 11 (43) |
Complexity: 13 |
Complexity Density: 0.48 |
|
2930 |
632 |
protected int findComplementScrollTarget(SearchResultsI sr)... |
2931 |
|
{ |
2932 |
632 |
final AlignViewportI complement = getCodingComplement(); |
2933 |
632 |
if (complement == null || !complement.isFollowHighlight()) |
2934 |
|
{ |
2935 |
629 |
return 0; |
2936 |
|
} |
2937 |
3 |
boolean iAmProtein = !getAlignment().isNucleotide(); |
2938 |
3 |
AlignmentI proteinAlignment = iAmProtein ? getAlignment() |
2939 |
|
: complement.getAlignment(); |
2940 |
3 |
if (proteinAlignment == null) |
2941 |
|
{ |
2942 |
0 |
return 0; |
2943 |
|
} |
2944 |
3 |
final List<AlignedCodonFrame> mappings = proteinAlignment |
2945 |
|
.getCodonFrames(); |
2946 |
|
|
2947 |
|
|
2948 |
|
|
2949 |
|
|
2950 |
|
|
2951 |
|
|
2952 |
3 |
int seqOffset = 0; |
2953 |
3 |
SequenceI sequence = null; |
2954 |
|
|
2955 |
|
|
2956 |
|
|
2957 |
|
|
2958 |
|
|
2959 |
3 |
int middleColumn = ranges.getStartRes() |
2960 |
|
+ (ranges.getEndRes() - ranges.getStartRes()) / 2; |
2961 |
3 |
final HiddenSequences hiddenSequences = getAlignment() |
2962 |
|
.getHiddenSequences(); |
2963 |
|
|
2964 |
|
|
2965 |
|
|
2966 |
|
|
2967 |
|
|
2968 |
3 |
int lastSeq = alignment.getHeight() - 1; |
2969 |
3 |
List<AlignedCodonFrame> seqMappings = null; |
2970 |
3 |
for (int seqNo = ranges |
2971 |
3 |
.getStartSeq(); seqNo <= lastSeq; seqNo++, seqOffset++) |
2972 |
|
{ |
2973 |
3 |
sequence = getAlignment().getSequenceAt(seqNo); |
2974 |
3 |
if (hiddenSequences != null && hiddenSequences.isHidden(sequence)) |
2975 |
|
{ |
2976 |
0 |
continue; |
2977 |
|
} |
2978 |
3 |
if (Comparison.isGap(sequence.getCharAt(middleColumn))) |
2979 |
|
{ |
2980 |
0 |
continue; |
2981 |
|
} |
2982 |
3 |
seqMappings = MappingUtils.findMappingsForSequenceAndOthers(sequence, |
2983 |
|
mappings, |
2984 |
|
getCodingComplement().getAlignment().getSequences()); |
2985 |
3 |
if (!seqMappings.isEmpty()) |
2986 |
|
{ |
2987 |
3 |
break; |
2988 |
|
} |
2989 |
|
} |
2990 |
|
|
2991 |
3 |
if (sequence == null || seqMappings == null || seqMappings.isEmpty()) |
2992 |
|
{ |
2993 |
|
|
2994 |
|
|
2995 |
|
|
2996 |
0 |
return 0; |
2997 |
|
} |
2998 |
3 |
MappingUtils.addSearchResults(sr, sequence, |
2999 |
|
sequence.findPosition(middleColumn), seqMappings); |
3000 |
3 |
return seqOffset; |
3001 |
|
} |
3002 |
|
|
3003 |
|
|
3004 |
|
|
3005 |
|
|
3006 |
|
|
3007 |
|
|
3008 |
|
@param |
3009 |
|
@param |
3010 |
|
|
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 9 |
Complexity Density: 1.12 |
|
3011 |
0 |
public void expandColSelection(SequenceGroup sg, boolean wholewidth)... |
3012 |
|
{ |
3013 |
0 |
int sgs, sge; |
3014 |
0 |
if (sg != null && (sgs = sg.getStartRes()) >= 0 |
3015 |
|
&& sg.getStartRes() <= (sge = sg.getEndRes()) |
3016 |
|
&& !this.hasSelectedColumns()) |
3017 |
|
{ |
3018 |
0 |
if (!wholewidth && alignment.getWidth() == (1 + sge - sgs)) |
3019 |
|
{ |
3020 |
|
|
3021 |
0 |
return; |
3022 |
|
} |
3023 |
0 |
if (colSel == null) |
3024 |
|
{ |
3025 |
0 |
colSel = new ColumnSelection(); |
3026 |
|
} |
3027 |
0 |
for (int cspos = sg.getStartRes(); cspos <= sg.getEndRes(); cspos++) |
3028 |
|
{ |
3029 |
0 |
colSel.addElement(cspos); |
3030 |
|
} |
3031 |
|
} |
3032 |
|
} |
3033 |
|
|
3034 |
|
|
3035 |
|
|
3036 |
|
|
3037 |
|
private boolean selectionIsDefinedGroup = false; |
3038 |
|
|
|
|
| 0% |
Uncovered Elements: 15 (15) |
Complexity: 5 |
Complexity Density: 0.56 |
|
3039 |
0 |
@Override... |
3040 |
|
public boolean isSelectionDefinedGroup() |
3041 |
|
{ |
3042 |
0 |
if (selectionGroup == null) |
3043 |
|
{ |
3044 |
0 |
return false; |
3045 |
|
} |
3046 |
0 |
if (isSelectionGroupChanged(true)) |
3047 |
|
{ |
3048 |
0 |
selectionIsDefinedGroup = false; |
3049 |
0 |
List<SequenceGroup> gps = alignment.getGroups(); |
3050 |
0 |
if (gps == null || gps.size() == 0) |
3051 |
|
{ |
3052 |
0 |
selectionIsDefinedGroup = false; |
3053 |
|
} |
3054 |
|
else |
3055 |
|
{ |
3056 |
0 |
selectionIsDefinedGroup = gps.contains(selectionGroup); |
3057 |
|
} |
3058 |
|
} |
3059 |
0 |
return selectionGroup.isDefined() || selectionIsDefinedGroup; |
3060 |
|
} |
3061 |
|
|
3062 |
|
|
3063 |
|
|
3064 |
|
|
3065 |
|
private SearchResultsI searchResults = null; |
3066 |
|
|
3067 |
|
protected TreeModel currentTree = null; |
3068 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3069 |
17143 |
@Override... |
3070 |
|
public boolean hasSearchResults() |
3071 |
|
{ |
3072 |
17143 |
return searchResults != null; |
3073 |
|
} |
3074 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3075 |
7 |
@Override... |
3076 |
|
public void setSearchResults(SearchResultsI results) |
3077 |
|
{ |
3078 |
7 |
searchResults = results; |
3079 |
|
} |
3080 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3081 |
60 |
@Override... |
3082 |
|
public SearchResultsI getSearchResults() |
3083 |
|
{ |
3084 |
60 |
return searchResults; |
3085 |
|
} |
3086 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3087 |
3561 |
@Override... |
3088 |
|
public ContactListI getContactList(AlignmentAnnotation _aa, int column) |
3089 |
|
{ |
3090 |
3561 |
return alignment.getContactListFor(_aa, column); |
3091 |
|
} |
3092 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3093 |
143 |
@Override... |
3094 |
|
public ContactMatrixI getContactMatrix( |
3095 |
|
AlignmentAnnotation alignmentAnnotation) |
3096 |
|
{ |
3097 |
143 |
return alignment.getContactMatrixFor(alignmentAnnotation); |
3098 |
|
} |
3099 |
|
|
3100 |
|
|
3101 |
|
|
3102 |
|
|
3103 |
|
|
3104 |
|
@return |
3105 |
|
|
|
|
| 77.8% |
Uncovered Elements: 6 (27) |
Complexity: 8 |
Complexity Density: 0.53 |
|
3106 |
1 |
public SequenceI getConsensusSeq()... |
3107 |
|
{ |
3108 |
1 |
if (consensus == null) |
3109 |
|
{ |
3110 |
0 |
updateConsensus(null); |
3111 |
|
} |
3112 |
1 |
if (consensus == null) |
3113 |
|
{ |
3114 |
0 |
return null; |
3115 |
|
} |
3116 |
1 |
StringBuffer seqs = new StringBuffer(); |
3117 |
4 |
for (int i = 0; i < consensus.annotations.length; i++) |
3118 |
|
{ |
3119 |
3 |
Annotation annotation = consensus.annotations[i]; |
3120 |
3 |
if (annotation != null) |
3121 |
|
{ |
3122 |
3 |
String description = annotation.description; |
3123 |
3 |
if (description != null && description.startsWith("[")) |
3124 |
|
{ |
3125 |
|
|
3126 |
1 |
seqs.append(description.charAt(1)); |
3127 |
|
} |
3128 |
|
else |
3129 |
|
{ |
3130 |
2 |
seqs.append(annotation.displayCharacter); |
3131 |
|
} |
3132 |
|
} |
3133 |
|
} |
3134 |
|
|
3135 |
1 |
SequenceI sq = new Sequence("Consensus", seqs.toString()); |
3136 |
1 |
sq.setDescription("Percentage Identity Consensus " |
3137 |
1 |
+ ((ignoreGapsInConsensusCalculation) ? " without gaps" : "")); |
3138 |
1 |
return sq; |
3139 |
|
} |
3140 |
|
|
|
|
| 0% |
Uncovered Elements: 27 (27) |
Complexity: 8 |
Complexity Density: 0.53 |
|
3141 |
0 |
public SequenceI getSSConsensusSeq()... |
3142 |
|
{ |
3143 |
0 |
if (secondaryStructureConsensus == null) |
3144 |
|
{ |
3145 |
0 |
updateSecondaryStructureConsensus(null); |
3146 |
|
} |
3147 |
0 |
if (secondaryStructureConsensus == null) |
3148 |
|
{ |
3149 |
0 |
return null; |
3150 |
|
} |
3151 |
0 |
StringBuffer seqs = new StringBuffer(); |
3152 |
0 |
for (int i = 0; i < secondaryStructureConsensus.annotations.length; i++) |
3153 |
|
{ |
3154 |
0 |
Annotation annotation = secondaryStructureConsensus.annotations[i]; |
3155 |
0 |
if (annotation != null) |
3156 |
|
{ |
3157 |
0 |
String description = annotation.description; |
3158 |
0 |
if (description != null && description.startsWith("[")) |
3159 |
|
{ |
3160 |
|
|
3161 |
0 |
seqs.append(description.charAt(1)); |
3162 |
|
} |
3163 |
|
else |
3164 |
|
{ |
3165 |
0 |
seqs.append(annotation.displayCharacter); |
3166 |
|
} |
3167 |
|
} |
3168 |
|
} |
3169 |
|
|
3170 |
0 |
SequenceI sq = new Sequence("Sec Str Consensus", seqs.toString()); |
3171 |
0 |
sq.setDescription("Percentage Identity Sec Str Consensus " |
3172 |
0 |
+ ((ignoreGapsInConsensusCalculation) ? " without gaps" : "")); |
3173 |
0 |
return sq; |
3174 |
|
} |
3175 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3176 |
28 |
@Override... |
3177 |
|
public void setCurrentTree(TreeModel tree) |
3178 |
|
{ |
3179 |
28 |
currentTree = tree; |
3180 |
|
} |
3181 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3182 |
50 |
@Override... |
3183 |
|
public TreeModel getCurrentTree() |
3184 |
|
{ |
3185 |
50 |
return currentTree; |
3186 |
|
} |
3187 |
|
|
|
|
| 75% |
Uncovered Elements: 4 (16) |
Complexity: 5 |
Complexity Density: 0.42 |
|
3188 |
121 |
@Override... |
3189 |
|
public AlignmentExportData getAlignExportData( |
3190 |
|
AlignExportSettingsI options) |
3191 |
|
{ |
3192 |
121 |
AlignmentI alignmentToExport = null; |
3193 |
121 |
String[] omitHidden = null; |
3194 |
121 |
alignmentToExport = null; |
3195 |
|
|
3196 |
121 |
if (hasHiddenColumns() && !options.isExportHiddenColumns()) |
3197 |
|
{ |
3198 |
0 |
omitHidden = getViewAsString(false, |
3199 |
|
options.isExportHiddenSequences()); |
3200 |
|
} |
3201 |
|
|
3202 |
121 |
int[] alignmentStartEnd = new int[2]; |
3203 |
121 |
if (hasHiddenRows() && options.isExportHiddenSequences()) |
3204 |
|
{ |
3205 |
0 |
alignmentToExport = getAlignment().getHiddenSequences() |
3206 |
|
.getFullAlignment(); |
3207 |
|
} |
3208 |
|
else |
3209 |
|
{ |
3210 |
121 |
alignmentToExport = getAlignment(); |
3211 |
|
} |
3212 |
121 |
alignmentStartEnd = getAlignment().getHiddenColumns() |
3213 |
|
.getVisibleStartAndEndIndex(alignmentToExport.getWidth()); |
3214 |
121 |
AlignmentExportData ed = new AlignmentExportData(alignmentToExport, |
3215 |
|
omitHidden, alignmentStartEnd); |
3216 |
121 |
return ed; |
3217 |
|
} |
3218 |
|
|
3219 |
|
|
3220 |
|
|
3221 |
|
|
3222 |
|
|
3223 |
|
|
3224 |
|
private boolean needToUpdateStructureViews = false; |
3225 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3226 |
0 |
@Override... |
3227 |
|
public boolean isUpdateStructures() |
3228 |
|
{ |
3229 |
0 |
return needToUpdateStructureViews; |
3230 |
|
} |
3231 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3232 |
0 |
@Override... |
3233 |
|
public void setUpdateStructures(boolean update) |
3234 |
|
{ |
3235 |
0 |
needToUpdateStructureViews = update; |
3236 |
|
} |
3237 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
3238 |
741 |
@Override... |
3239 |
|
public boolean needToUpdateStructureViews() |
3240 |
|
{ |
3241 |
741 |
boolean update = needToUpdateStructureViews; |
3242 |
741 |
needToUpdateStructureViews = false; |
3243 |
741 |
return update; |
3244 |
|
} |
3245 |
|
|
|
|
| 0% |
Uncovered Elements: 22 (22) |
Complexity: 5 |
Complexity Density: 0.36 |
|
3246 |
0 |
@Override... |
3247 |
|
public void addSequenceGroup(SequenceGroup sequenceGroup) |
3248 |
|
{ |
3249 |
0 |
alignment.addGroup(sequenceGroup); |
3250 |
|
|
3251 |
0 |
Color col = sequenceGroup.idColour; |
3252 |
0 |
if (col != null) |
3253 |
|
{ |
3254 |
0 |
col = col.brighter(); |
3255 |
|
|
3256 |
0 |
for (SequenceI sq : sequenceGroup.getSequences()) |
3257 |
|
{ |
3258 |
0 |
setSequenceColour(sq, col); |
3259 |
|
} |
3260 |
|
} |
3261 |
|
|
3262 |
0 |
if (codingComplement != null) |
3263 |
|
{ |
3264 |
0 |
SequenceGroup mappedGroup = MappingUtils |
3265 |
|
.mapSequenceGroup(sequenceGroup, this, codingComplement); |
3266 |
0 |
if (mappedGroup.getSequences().size() > 0) |
3267 |
|
{ |
3268 |
0 |
codingComplement.getAlignment().addGroup(mappedGroup); |
3269 |
|
|
3270 |
0 |
if (col != null) |
3271 |
|
{ |
3272 |
0 |
for (SequenceI seq : mappedGroup.getSequences()) |
3273 |
|
{ |
3274 |
0 |
codingComplement.setSequenceColour(seq, col); |
3275 |
|
} |
3276 |
|
} |
3277 |
|
} |
3278 |
|
|
3279 |
0 |
codingComplement.setUpdateStructures(needToUpdateStructureViews); |
3280 |
|
} |
3281 |
|
} |
3282 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (9) |
Complexity: 3 |
Complexity Density: 0.43 |
|
3283 |
34 |
@Override... |
3284 |
|
public Iterator<int[]> getViewAsVisibleContigs(boolean selectedRegionOnly) |
3285 |
|
{ |
3286 |
34 |
int start = 0; |
3287 |
34 |
int end = 0; |
3288 |
34 |
if (selectedRegionOnly && selectionGroup != null) |
3289 |
|
{ |
3290 |
4 |
start = selectionGroup.getStartRes(); |
3291 |
4 |
end = selectionGroup.getEndRes() + 1; |
3292 |
|
} |
3293 |
|
else |
3294 |
|
{ |
3295 |
30 |
end = alignment.getWidth(); |
3296 |
|
} |
3297 |
34 |
return (alignment.getHiddenColumns().getVisContigsIterator(start, end, |
3298 |
|
false)); |
3299 |
|
} |
3300 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
3301 |
133 |
public void setSavedUpToDate(boolean s)... |
3302 |
|
{ |
3303 |
133 |
setSavedUpToDate(s, QuitHandler.Message.UNSAVED_CHANGES); |
3304 |
|
} |
3305 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
3306 |
452 |
public void setSavedUpToDate(boolean s, QuitHandler.Message m)... |
3307 |
|
{ |
3308 |
452 |
Console.debug( |
3309 |
|
"Setting " + this.getViewId() + " setSavedUpToDate to " + s); |
3310 |
452 |
savedUpToDate = s; |
3311 |
452 |
QuitHandler.setMessage(m); |
3312 |
|
} |
3313 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
3314 |
4 |
public boolean savedUpToDate()... |
3315 |
|
{ |
3316 |
4 |
Console.debug("Returning " + this.getViewId() + " savedUpToDate value: " |
3317 |
|
+ savedUpToDate); |
3318 |
4 |
return savedUpToDate; |
3319 |
|
} |
3320 |
|
} |