1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.viewmodel.seqfeatures; |
22 |
|
|
23 |
|
import java.awt.Color; |
24 |
|
import java.beans.PropertyChangeListener; |
25 |
|
import java.beans.PropertyChangeSupport; |
26 |
|
import java.util.ArrayList; |
27 |
|
import java.util.Arrays; |
28 |
|
import java.util.Comparator; |
29 |
|
import java.util.HashMap; |
30 |
|
import java.util.HashSet; |
31 |
|
import java.util.Hashtable; |
32 |
|
import java.util.Iterator; |
33 |
|
import java.util.List; |
34 |
|
import java.util.Map; |
35 |
|
import java.util.Set; |
36 |
|
import java.util.concurrent.ConcurrentHashMap; |
37 |
|
|
38 |
|
import jalview.api.AlignViewportI; |
39 |
|
import jalview.api.FeatureColourI; |
40 |
|
import jalview.api.FeaturesDisplayedI; |
41 |
|
import jalview.datamodel.AlignedCodonFrame; |
42 |
|
import jalview.datamodel.AlignedCodonFrame.SequenceToSequenceMapping; |
43 |
|
import jalview.datamodel.AlignmentI; |
44 |
|
import jalview.datamodel.MappedFeatures; |
45 |
|
import jalview.datamodel.SearchResultMatchI; |
46 |
|
import jalview.datamodel.SearchResults; |
47 |
|
import jalview.datamodel.SearchResultsI; |
48 |
|
import jalview.datamodel.SequenceFeature; |
49 |
|
import jalview.datamodel.SequenceI; |
50 |
|
import jalview.datamodel.features.FeatureMatcherSetI; |
51 |
|
import jalview.datamodel.features.SequenceFeatures; |
52 |
|
import jalview.renderer.seqfeatures.FeatureRenderer; |
53 |
|
import jalview.schemes.FeatureColour; |
54 |
|
import jalview.util.ColorUtils; |
55 |
|
import jalview.util.Platform; |
56 |
|
|
|
|
| 82% |
Uncovered Elements: 115 (639) |
Complexity: 188 |
Complexity Density: 0.5 |
|
57 |
|
public abstract class FeatureRendererModel |
58 |
|
implements jalview.api.FeatureRenderer |
59 |
|
{ |
60 |
|
|
61 |
|
|
62 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 1 |
Complexity Density: 0.25 |
|
63 |
|
public static class FeatureSettingsBean |
64 |
|
{ |
65 |
|
public final String featureType; |
66 |
|
|
67 |
|
public final FeatureColourI featureColour; |
68 |
|
|
69 |
|
public final FeatureMatcherSetI filter; |
70 |
|
|
71 |
|
public final Boolean show; |
72 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
73 |
39 |
public FeatureSettingsBean(String type, FeatureColourI colour,... |
74 |
|
FeatureMatcherSetI theFilter, Boolean isShown) |
75 |
|
{ |
76 |
39 |
featureType = type; |
77 |
39 |
featureColour = colour; |
78 |
39 |
filter = theFilter; |
79 |
39 |
show = isShown; |
80 |
|
} |
81 |
|
} |
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
protected float transparency = 1.0f; |
87 |
|
|
88 |
|
|
89 |
|
|
90 |
|
|
91 |
|
protected Map<String, FeatureColourI> featureColours = new ConcurrentHashMap<>(); |
92 |
|
|
93 |
|
|
94 |
|
|
95 |
|
|
96 |
|
protected Map<String, Boolean> featureGroups = new ConcurrentHashMap<>(); |
97 |
|
|
98 |
|
|
99 |
|
|
100 |
|
|
101 |
|
protected Map<String, FeatureMatcherSetI> featureFilters = new HashMap<>(); |
102 |
|
|
103 |
|
protected String[] renderOrder; |
104 |
|
|
105 |
|
Map<String, Float> featureOrder = null; |
106 |
|
|
107 |
|
protected AlignViewportI av; |
108 |
|
|
109 |
|
private PropertyChangeSupport changeSupport = new PropertyChangeSupport( |
110 |
|
this); |
111 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
112 |
370254 |
@Override... |
113 |
|
public AlignViewportI getViewport() |
114 |
|
{ |
115 |
370258 |
return av; |
116 |
|
} |
117 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
118 |
2 |
public FeatureRendererSettings getSettings()... |
119 |
|
{ |
120 |
2 |
return new FeatureRendererSettings(this); |
121 |
|
} |
122 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
123 |
36 |
public void transferSettings(FeatureRendererSettings fr)... |
124 |
|
{ |
125 |
36 |
this.renderOrder = fr.renderOrder; |
126 |
36 |
this.featureGroups = fr.featureGroups; |
127 |
36 |
this.featureColours = fr.featureColours; |
128 |
36 |
this.transparency = fr.transparency; |
129 |
36 |
this.featureOrder = fr.featureOrder; |
130 |
|
} |
131 |
|
|
132 |
|
|
133 |
|
|
134 |
|
|
135 |
|
@param |
136 |
|
|
137 |
|
|
|
|
| 73.9% |
Uncovered Elements: 6 (23) |
Complexity: 5 |
Complexity Density: 0.29 |
|
138 |
71 |
public void transferSettings(jalview.api.FeatureRenderer _fr)... |
139 |
|
{ |
140 |
71 |
FeatureRenderer fr = (FeatureRenderer) _fr; |
141 |
71 |
FeatureRendererSettings frs = new FeatureRendererSettings(fr); |
142 |
71 |
this.renderOrder = frs.renderOrder; |
143 |
71 |
this.featureGroups = frs.featureGroups; |
144 |
71 |
this.featureColours = frs.featureColours; |
145 |
71 |
this.featureFilters = frs.featureFilters; |
146 |
71 |
this.transparency = frs.transparency; |
147 |
71 |
this.featureOrder = frs.featureOrder; |
148 |
71 |
if (av != null && av != fr.getViewport()) |
149 |
|
{ |
150 |
|
|
151 |
4 |
if (_fr.getFeaturesDisplayed() != null) |
152 |
|
{ |
153 |
4 |
FeaturesDisplayedI fd = getFeaturesDisplayed(); |
154 |
4 |
if (fd == null) |
155 |
|
{ |
156 |
4 |
setFeaturesDisplayedFrom(_fr.getFeaturesDisplayed()); |
157 |
|
} |
158 |
|
else |
159 |
|
{ |
160 |
0 |
synchronized (fd) |
161 |
|
{ |
162 |
0 |
fd.clear(); |
163 |
0 |
for (String type : _fr.getFeaturesDisplayed() |
164 |
|
.getVisibleFeatures()) |
165 |
|
{ |
166 |
0 |
fd.setVisible(type); |
167 |
|
} |
168 |
|
} |
169 |
|
} |
170 |
|
} |
171 |
|
} |
172 |
|
} |
173 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
174 |
4 |
public void setFeaturesDisplayedFrom(FeaturesDisplayedI featuresDisplayed)... |
175 |
|
{ |
176 |
4 |
av.setFeaturesDisplayed(new FeaturesDisplayed(featuresDisplayed)); |
177 |
|
} |
178 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
179 |
18 |
@Override... |
180 |
|
public void setVisible(String featureType) |
181 |
|
{ |
182 |
18 |
FeaturesDisplayedI fdi = av.getFeaturesDisplayed(); |
183 |
18 |
if (fdi == null) |
184 |
|
{ |
185 |
5 |
av.setFeaturesDisplayed(fdi = new FeaturesDisplayed()); |
186 |
|
} |
187 |
18 |
if (!fdi.isRegistered(featureType)) |
188 |
|
{ |
189 |
17 |
pushFeatureType(Arrays.asList(new String[] { featureType })); |
190 |
|
} |
191 |
18 |
fdi.setVisible(featureType); |
192 |
|
} |
193 |
|
|
|
|
| 81.2% |
Uncovered Elements: 3 (16) |
Complexity: 4 |
Complexity Density: 0.4 |
|
194 |
1 |
@Override... |
195 |
|
public void setAllVisible(List<String> featureTypes) |
196 |
|
{ |
197 |
1 |
FeaturesDisplayedI fdi = av.getFeaturesDisplayed(); |
198 |
1 |
if (fdi == null) |
199 |
|
{ |
200 |
1 |
av.setFeaturesDisplayed(fdi = new FeaturesDisplayed()); |
201 |
|
} |
202 |
1 |
List<String> nft = new ArrayList<>(); |
203 |
1 |
for (String featureType : featureTypes) |
204 |
|
{ |
205 |
1 |
if (!fdi.isRegistered(featureType)) |
206 |
|
{ |
207 |
1 |
nft.add(featureType); |
208 |
|
} |
209 |
|
} |
210 |
1 |
if (nft.size() > 0) |
211 |
|
{ |
212 |
1 |
pushFeatureType(nft); |
213 |
|
} |
214 |
1 |
fdi.setAllVisible(featureTypes); |
215 |
|
} |
216 |
|
|
217 |
|
|
218 |
|
|
219 |
|
|
220 |
|
|
221 |
|
@param |
222 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (11) |
Complexity: 3 |
Complexity Density: 0.43 |
|
223 |
18 |
private void pushFeatureType(List<String> types)... |
224 |
|
{ |
225 |
|
|
226 |
18 |
int ts = types.size(); |
227 |
18 |
String neworder[] = new String[(renderOrder == null ? 0 |
228 |
|
: renderOrder.length) + ts]; |
229 |
18 |
types.toArray(neworder); |
230 |
18 |
if (renderOrder != null) |
231 |
|
{ |
232 |
12 |
System.arraycopy(neworder, 0, neworder, renderOrder.length, ts); |
233 |
12 |
System.arraycopy(renderOrder, 0, neworder, 0, renderOrder.length); |
234 |
|
} |
235 |
18 |
renderOrder = neworder; |
236 |
|
} |
237 |
|
|
238 |
|
protected Map<String, float[][]> minmax = new Hashtable<>(); |
239 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
240 |
28 |
public Map<String, float[][]> getMinMax()... |
241 |
|
{ |
242 |
28 |
return minmax; |
243 |
|
} |
244 |
|
|
245 |
|
|
246 |
|
|
247 |
|
|
248 |
|
@param |
249 |
|
@return |
250 |
|
|
251 |
|
|
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 4 |
Complexity Density: 0.5 |
|
252 |
0 |
protected final byte[] normaliseScore(SequenceFeature sequenceFeature)... |
253 |
|
{ |
254 |
0 |
float[] mm = minmax.get(sequenceFeature.type)[0]; |
255 |
0 |
final byte[] r = new byte[] { 0, (byte) 255 }; |
256 |
0 |
if (mm != null) |
257 |
|
{ |
258 |
0 |
if (r[0] != 0 || mm[0] < 0.0) |
259 |
|
{ |
260 |
0 |
r[0] = 1; |
261 |
0 |
r[1] = (byte) ((int) 128.0 |
262 |
|
+ 127.0 * (sequenceFeature.score / mm[1])); |
263 |
|
} |
264 |
|
else |
265 |
|
{ |
266 |
0 |
r[1] = (byte) ((int) 255.0 * (sequenceFeature.score / mm[1])); |
267 |
|
} |
268 |
|
} |
269 |
0 |
return r; |
270 |
|
} |
271 |
|
|
272 |
|
boolean newFeatureAdded = false; |
273 |
|
|
274 |
|
boolean findingFeatures = false; |
275 |
|
|
|
|
| 33.3% |
Uncovered Elements: 6 (9) |
Complexity: 5 |
Complexity Density: 1 |
|
276 |
25216 |
protected boolean updateFeatures()... |
277 |
|
{ |
278 |
25216 |
if (av.getFeaturesDisplayed() == null || renderOrder == null |
279 |
|
|| newFeatureAdded) |
280 |
|
{ |
281 |
0 |
findAllFeatures(); |
282 |
0 |
if (av.getFeaturesDisplayed().getVisibleFeatureCount() < 1) |
283 |
|
{ |
284 |
0 |
return false; |
285 |
|
} |
286 |
|
} |
287 |
|
|
288 |
25216 |
return true; |
289 |
|
} |
290 |
|
|
291 |
|
|
292 |
|
|
293 |
|
|
294 |
|
|
295 |
|
|
|
|
| 87.5% |
Uncovered Elements: 1 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
296 |
19 |
protected void findAllFeatures()... |
297 |
|
{ |
298 |
19 |
synchronized (firing) |
299 |
|
{ |
300 |
19 |
if (firing.equals(Boolean.FALSE)) |
301 |
|
{ |
302 |
19 |
firing = Boolean.TRUE; |
303 |
19 |
findAllFeatures(true); |
304 |
19 |
notifyFeaturesChanged(); |
305 |
19 |
firing = Boolean.FALSE; |
306 |
|
} |
307 |
|
} |
308 |
|
} |
309 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
310 |
86 |
@Override... |
311 |
|
public void notifyFeaturesChanged() |
312 |
|
{ |
313 |
86 |
changeSupport.firePropertyChange("changeSupport", null, null); |
314 |
|
} |
315 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (14) |
Complexity: 4 |
Complexity Density: 0.4 |
|
316 |
18 |
@Override... |
317 |
|
public List<SequenceFeature> findFeaturesAtColumn(SequenceI sequence, |
318 |
|
int column) |
319 |
|
{ |
320 |
|
|
321 |
|
|
322 |
|
|
323 |
|
|
324 |
18 |
List<SequenceFeature> result = new ArrayList<>(); |
325 |
18 |
if (!av.areFeaturesDisplayed() || getFeaturesDisplayed() == null) |
326 |
|
{ |
327 |
1 |
return result; |
328 |
|
} |
329 |
|
|
330 |
17 |
Set<String> visibleFeatures = getFeaturesDisplayed() |
331 |
|
.getVisibleFeatures(); |
332 |
17 |
String[] visibleTypes = visibleFeatures |
333 |
|
.toArray(new String[visibleFeatures.size()]); |
334 |
17 |
List<SequenceFeature> features = sequence.findFeatures(column, column, |
335 |
|
visibleTypes); |
336 |
|
|
337 |
|
|
338 |
|
|
339 |
|
|
340 |
|
|
341 |
17 |
for (SequenceFeature sf : features) |
342 |
|
{ |
343 |
33 |
if (getColour(sf) != null) |
344 |
|
{ |
345 |
23 |
result.add(sf); |
346 |
|
} |
347 |
|
} |
348 |
17 |
return result; |
349 |
|
} |
350 |
|
|
351 |
|
|
352 |
|
|
353 |
|
|
354 |
|
@param |
355 |
|
|
356 |
|
|
357 |
|
|
358 |
|
|
|
|
| 93.4% |
Uncovered Elements: 4 (61) |
Complexity: 13 |
Complexity Density: 0.35 |
|
359 |
134 |
@Override... |
360 |
|
public synchronized void findAllFeatures(boolean newMadeVisible) |
361 |
|
{ |
362 |
134 |
newFeatureAdded = false; |
363 |
|
|
364 |
134 |
if (findingFeatures) |
365 |
|
{ |
366 |
0 |
newFeatureAdded = true; |
367 |
0 |
return; |
368 |
|
} |
369 |
|
|
370 |
134 |
findingFeatures = true; |
371 |
134 |
if (av.getFeaturesDisplayed() == null) |
372 |
|
{ |
373 |
60 |
av.setFeaturesDisplayed(new FeaturesDisplayed()); |
374 |
|
} |
375 |
134 |
FeaturesDisplayedI featuresDisplayed = av.getFeaturesDisplayed(); |
376 |
|
|
377 |
134 |
Set<String> oldfeatures = new HashSet<>(); |
378 |
134 |
if (renderOrder != null) |
379 |
|
{ |
380 |
396 |
for (int i = 0; i < renderOrder.length; i++) |
381 |
|
{ |
382 |
338 |
if (renderOrder[i] != null) |
383 |
|
{ |
384 |
338 |
oldfeatures.add(renderOrder[i]); |
385 |
|
} |
386 |
|
} |
387 |
|
} |
388 |
|
|
389 |
134 |
AlignmentI alignment = av.getAlignment(); |
390 |
134 |
List<String> allfeatures = new ArrayList<>(); |
391 |
|
|
392 |
1099 |
for (int i = 0; i < alignment.getHeight(); i++) |
393 |
|
{ |
394 |
965 |
SequenceI asq = alignment.getSequenceAt(i); |
395 |
965 |
for (String group : asq.getFeatures().getFeatureGroups(true)) |
396 |
|
{ |
397 |
854 |
boolean groupDisplayed = true; |
398 |
854 |
if (group != null) |
399 |
|
{ |
400 |
832 |
if (featureGroups.containsKey(group)) |
401 |
|
{ |
402 |
750 |
groupDisplayed = featureGroups.get(group); |
403 |
|
} |
404 |
|
else |
405 |
|
{ |
406 |
82 |
groupDisplayed = newMadeVisible; |
407 |
82 |
featureGroups.put(group, groupDisplayed); |
408 |
|
} |
409 |
|
} |
410 |
854 |
if (groupDisplayed) |
411 |
|
{ |
412 |
853 |
Set<String> types = asq.getFeatures() |
413 |
|
.getFeatureTypesForGroups(true, group); |
414 |
853 |
for (String type : types) |
415 |
|
{ |
416 |
2263 |
if (!allfeatures.contains(type)) |
417 |
|
{ |
418 |
378 |
allfeatures.add(type); |
419 |
|
} |
420 |
2263 |
updateMinMax(asq, type, true); |
421 |
|
} |
422 |
|
} |
423 |
|
} |
424 |
|
} |
425 |
|
|
426 |
|
|
427 |
|
|
428 |
134 |
if (newMadeVisible) |
429 |
|
{ |
430 |
132 |
for (String type : allfeatures) |
431 |
|
{ |
432 |
368 |
if (!oldfeatures.contains(type)) |
433 |
|
{ |
434 |
132 |
featuresDisplayed.setVisible(type); |
435 |
132 |
setOrder(type, 0); |
436 |
|
} |
437 |
|
} |
438 |
|
} |
439 |
|
|
440 |
134 |
updateRenderOrder(allfeatures); |
441 |
134 |
findingFeatures = false; |
442 |
|
} |
443 |
|
|
444 |
|
|
445 |
|
|
446 |
|
|
447 |
|
|
448 |
|
|
449 |
|
@param |
450 |
|
@param |
451 |
|
@param |
452 |
|
|
|
|
| 88.5% |
Uncovered Elements: 3 (26) |
Complexity: 6 |
Complexity Density: 0.38 |
|
453 |
2263 |
protected void updateMinMax(SequenceI seq, String featureType,... |
454 |
|
boolean positional) |
455 |
|
{ |
456 |
2263 |
float min = seq.getFeatures().getMinimumScore(featureType, positional); |
457 |
2263 |
if (Float.isNaN(min)) |
458 |
|
{ |
459 |
26 |
return; |
460 |
|
} |
461 |
|
|
462 |
2237 |
float max = seq.getFeatures().getMaximumScore(featureType, positional); |
463 |
|
|
464 |
|
|
465 |
|
|
466 |
|
|
467 |
|
|
468 |
2237 |
if (minmax == null) |
469 |
|
{ |
470 |
0 |
minmax = new Hashtable<>(); |
471 |
|
} |
472 |
2237 |
synchronized (minmax) |
473 |
|
{ |
474 |
2237 |
float[][] mm = minmax.get(featureType); |
475 |
2237 |
int index = positional ? 0 : 1; |
476 |
2237 |
if (mm == null) |
477 |
|
{ |
478 |
272 |
mm = new float[][] { null, null }; |
479 |
272 |
minmax.put(featureType, mm); |
480 |
|
} |
481 |
2237 |
if (mm[index] == null) |
482 |
|
{ |
483 |
272 |
mm[index] = new float[] { min, max }; |
484 |
|
} |
485 |
|
else |
486 |
|
{ |
487 |
1965 |
mm[index][0] = Math.min(mm[index][0], min); |
488 |
1965 |
mm[index][1] = Math.max(mm[index][1], max); |
489 |
|
} |
490 |
|
} |
491 |
|
} |
492 |
|
|
493 |
|
protected Boolean firing = Boolean.FALSE; |
494 |
|
|
495 |
|
|
496 |
|
|
497 |
|
|
498 |
|
|
499 |
|
|
500 |
|
|
501 |
|
|
502 |
|
|
503 |
|
|
504 |
|
@param |
505 |
|
|
|
|
| 81.8% |
Uncovered Elements: 14 (77) |
Complexity: 26 |
Complexity Density: 0.58 |
|
506 |
134 |
private void updateRenderOrder(List<String> allFeatures)... |
507 |
|
{ |
508 |
134 |
List<String> allfeatures = new ArrayList<>(allFeatures); |
509 |
134 |
String[] oldRender = renderOrder; |
510 |
134 |
renderOrder = new String[allfeatures.size()]; |
511 |
134 |
boolean initOrders = (featureOrder == null); |
512 |
134 |
int opos = 0; |
513 |
134 |
if (oldRender != null && oldRender.length > 0) |
514 |
|
{ |
515 |
394 |
for (int j = 0; j < oldRender.length; j++) |
516 |
|
{ |
517 |
338 |
if (oldRender[j] != null) |
518 |
|
{ |
519 |
338 |
if (initOrders) |
520 |
|
{ |
521 |
9 |
setOrder(oldRender[j], |
522 |
|
(1 - (1 + (float) j) / oldRender.length)); |
523 |
|
} |
524 |
338 |
if (allfeatures.contains(oldRender[j])) |
525 |
|
{ |
526 |
246 |
renderOrder[opos++] = oldRender[j]; |
527 |
|
|
528 |
246 |
allfeatures.remove(oldRender[j]); |
529 |
246 |
if (minmax != null) |
530 |
|
{ |
531 |
246 |
float[][] mmrange = minmax.get(oldRender[j]); |
532 |
246 |
if (mmrange != null) |
533 |
|
{ |
534 |
244 |
FeatureColourI fc = featureColours.get(oldRender[j]); |
535 |
244 |
if (fc != null && !fc.isSimpleColour() && fc.isAutoScaled() |
536 |
|
&& !fc.isColourByAttribute()) |
537 |
|
{ |
538 |
0 |
fc.updateBounds(mmrange[0][0], mmrange[0][1]); |
539 |
|
} |
540 |
|
} |
541 |
|
} |
542 |
|
} |
543 |
|
} |
544 |
|
} |
545 |
|
} |
546 |
134 |
if (allfeatures.size() == 0) |
547 |
|
{ |
548 |
|
|
549 |
56 |
return; |
550 |
|
} |
551 |
78 |
int i = allfeatures.size() - 1; |
552 |
78 |
int iSize = i; |
553 |
78 |
boolean sort = false; |
554 |
78 |
String[] newf = new String[allfeatures.size()]; |
555 |
78 |
float[] sortOrder = new float[allfeatures.size()]; |
556 |
78 |
for (String newfeat : allfeatures) |
557 |
|
{ |
558 |
132 |
newf[i] = newfeat; |
559 |
132 |
if (minmax != null) |
560 |
|
{ |
561 |
|
|
562 |
132 |
float[][] mmrange = minmax.get(newf[i]); |
563 |
132 |
if (mmrange != null) |
564 |
|
{ |
565 |
123 |
FeatureColourI fc = featureColours.get(newf[i]); |
566 |
123 |
if (fc != null && !fc.isSimpleColour() && fc.isAutoScaled() |
567 |
|
&& !fc.isColourByAttribute()) |
568 |
|
{ |
569 |
0 |
fc.updateBounds(mmrange[0][0], mmrange[0][1]); |
570 |
|
} |
571 |
|
} |
572 |
|
} |
573 |
132 |
if (initOrders || !featureOrder.containsKey(newf[i])) |
574 |
|
{ |
575 |
0 |
int denom = initOrders ? allfeatures.size() : featureOrder.size(); |
576 |
|
|
577 |
|
|
578 |
0 |
setOrder(newf[i], i / (float) denom); |
579 |
|
} |
580 |
|
|
581 |
132 |
sortOrder[i] = 2 - featureOrder.get(newf[i]).floatValue(); |
582 |
132 |
if (i < iSize) |
583 |
|
{ |
584 |
|
|
585 |
54 |
sort = sort || sortOrder[i] > sortOrder[i + 1]; |
586 |
|
} |
587 |
132 |
i--; |
588 |
|
} |
589 |
78 |
if (iSize > 1 && sort) |
590 |
|
{ |
591 |
0 |
jalview.util.QuickSort.sort(sortOrder, newf); |
592 |
|
} |
593 |
78 |
sortOrder = null; |
594 |
78 |
System.arraycopy(newf, 0, renderOrder, opos, newf.length); |
595 |
|
} |
596 |
|
|
597 |
|
|
598 |
|
|
599 |
|
|
600 |
|
|
601 |
|
@param |
602 |
|
@return |
603 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
604 |
24057 |
@Override... |
605 |
|
public FeatureColourI getFeatureStyle(String featureType) |
606 |
|
{ |
607 |
24057 |
FeatureColourI fc = featureColours.get(featureType); |
608 |
24057 |
if (fc == null) |
609 |
|
{ |
610 |
70 |
Color col = ColorUtils.createColourFromName(featureType); |
611 |
70 |
fc = new FeatureColour(col); |
612 |
70 |
featureColours.put(featureType, fc); |
613 |
|
} |
614 |
24057 |
return fc; |
615 |
|
} |
616 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
617 |
9237 |
@Override... |
618 |
|
public Color getColour(SequenceFeature feature) |
619 |
|
{ |
620 |
9237 |
FeatureColourI fc = getFeatureStyle(feature.getType()); |
621 |
9237 |
return getColor(feature, fc); |
622 |
|
} |
623 |
|
|
624 |
|
|
625 |
|
|
626 |
|
|
627 |
|
|
628 |
|
@param |
629 |
|
@return |
630 |
|
|
|
|
| 60% |
Uncovered Elements: 2 (5) |
Complexity: 3 |
Complexity Density: 3 |
|
631 |
722228 |
public boolean showFeatureOfType(String type)... |
632 |
|
{ |
633 |
722308 |
return type == null ? false |
634 |
722263 |
: (av.getFeaturesDisplayed() == null ? true |
635 |
|
: av.getFeaturesDisplayed().isVisible(type)); |
636 |
|
} |
637 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
638 |
100 |
@Override... |
639 |
|
public void setColour(String featureType, FeatureColourI col) |
640 |
|
{ |
641 |
100 |
featureColours.put(featureType, col); |
642 |
|
} |
643 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
644 |
70 |
@Override... |
645 |
|
public void setTransparency(float value) |
646 |
|
{ |
647 |
70 |
transparency = value; |
648 |
|
} |
649 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
650 |
27317 |
@Override... |
651 |
|
public float getTransparency() |
652 |
|
{ |
653 |
27317 |
return transparency; |
654 |
|
} |
655 |
|
|
656 |
|
|
657 |
|
|
658 |
|
|
659 |
|
|
660 |
|
@param |
661 |
|
|
662 |
|
@param |
663 |
|
|
664 |
|
|
665 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
666 |
146 |
public float setOrder(String type, float position)... |
667 |
|
{ |
668 |
146 |
if (featureOrder == null) |
669 |
|
{ |
670 |
61 |
featureOrder = new Hashtable<>(); |
671 |
|
} |
672 |
146 |
featureOrder.put(type, Float.valueOf(position)); |
673 |
146 |
return position; |
674 |
|
} |
675 |
|
|
676 |
|
|
677 |
|
|
678 |
|
|
679 |
|
@param |
680 |
|
@return |
681 |
|
|
|
|
| 62.5% |
Uncovered Elements: 3 (8) |
Complexity: 3 |
Complexity Density: 0.75 |
|
682 |
204 |
public float getOrder(String type)... |
683 |
|
{ |
684 |
204 |
if (featureOrder != null) |
685 |
|
{ |
686 |
204 |
if (featureOrder.containsKey(type)) |
687 |
|
{ |
688 |
204 |
return featureOrder.get(type).floatValue(); |
689 |
|
} |
690 |
|
} |
691 |
0 |
return -1; |
692 |
|
} |
693 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
694 |
59 |
@Override... |
695 |
|
public Map<String, FeatureColourI> getFeatureColours() |
696 |
|
{ |
697 |
59 |
return featureColours; |
698 |
|
} |
699 |
|
|
700 |
|
|
701 |
|
|
702 |
|
|
703 |
|
@param |
704 |
|
|
705 |
|
@return |
706 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
707 |
13 |
public boolean setFeaturePriority(FeatureSettingsBean[] data)... |
708 |
|
{ |
709 |
13 |
return setFeaturePriority(data, true); |
710 |
|
} |
711 |
|
|
712 |
|
|
713 |
|
|
714 |
|
|
715 |
|
|
716 |
|
@param |
717 |
|
|
718 |
|
@param |
719 |
|
|
720 |
|
@return |
721 |
|
|
722 |
|
|
|
|
| 82.9% |
Uncovered Elements: 7 (41) |
Complexity: 9 |
Complexity Density: 0.36 |
|
723 |
16 |
public boolean setFeaturePriority(FeatureSettingsBean[] data,... |
724 |
|
boolean visibleNew) |
725 |
|
{ |
726 |
|
|
727 |
|
|
728 |
|
|
729 |
16 |
List<String> visibleFeatures = getDisplayedFeatureTypes(); |
730 |
16 |
Map<String, FeatureColourI> visibleColours = new HashMap<>( |
731 |
|
getFeatureColours()); |
732 |
|
|
733 |
16 |
FeaturesDisplayedI av_featuresdisplayed = null; |
734 |
16 |
if (visibleNew) |
735 |
|
{ |
736 |
? |
if ((av_featuresdisplayed = av.getFeaturesDisplayed()) != null) |
737 |
|
{ |
738 |
12 |
av.getFeaturesDisplayed().clear(); |
739 |
|
} |
740 |
|
else |
741 |
|
{ |
742 |
1 |
av.setFeaturesDisplayed( |
743 |
|
av_featuresdisplayed = new FeaturesDisplayed()); |
744 |
|
} |
745 |
|
} |
746 |
|
else |
747 |
|
{ |
748 |
3 |
av_featuresdisplayed = av.getFeaturesDisplayed(); |
749 |
|
} |
750 |
16 |
if (data == null) |
751 |
|
{ |
752 |
0 |
return false; |
753 |
|
} |
754 |
|
|
755 |
|
|
756 |
|
|
757 |
16 |
renderOrder = new String[data.length]; |
758 |
|
|
759 |
16 |
if (data.length > 0) |
760 |
|
{ |
761 |
57 |
for (int i = 0; i < data.length; i++) |
762 |
|
{ |
763 |
41 |
String type = data[i].featureType; |
764 |
41 |
setColour(type, data[i].featureColour); |
765 |
41 |
if (data[i].show) |
766 |
|
{ |
767 |
29 |
av_featuresdisplayed.setVisible(type); |
768 |
|
} |
769 |
|
|
770 |
41 |
renderOrder[data.length - i - 1] = type; |
771 |
|
} |
772 |
|
} |
773 |
|
|
774 |
|
|
775 |
|
|
776 |
|
|
777 |
|
|
778 |
16 |
List<String> reorderedVisibleFeatures = getDisplayedFeatureTypes(); |
779 |
16 |
if (!visibleFeatures.equals(reorderedVisibleFeatures)) |
780 |
|
{ |
781 |
|
|
782 |
|
|
783 |
|
|
784 |
11 |
return true; |
785 |
|
} |
786 |
|
|
787 |
|
|
788 |
|
|
789 |
|
|
790 |
5 |
for (String feature : visibleFeatures) |
791 |
|
{ |
792 |
17 |
if (visibleColours.get(feature) != getFeatureStyle(feature)) |
793 |
|
{ |
794 |
0 |
return true; |
795 |
|
} |
796 |
|
} |
797 |
5 |
return false; |
798 |
|
} |
799 |
|
|
800 |
|
|
801 |
|
@param |
802 |
|
@see |
803 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
804 |
1 |
public void addPropertyChangeListener(PropertyChangeListener listener)... |
805 |
|
{ |
806 |
1 |
changeSupport.addPropertyChangeListener(listener); |
807 |
|
} |
808 |
|
|
809 |
|
|
810 |
|
@param |
811 |
|
@see |
812 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
813 |
1 |
public void removePropertyChangeListener(PropertyChangeListener listener)... |
814 |
|
{ |
815 |
1 |
changeSupport.removePropertyChangeListener(listener); |
816 |
|
} |
817 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
818 |
1 |
public Set<String> getAllFeatureColours()... |
819 |
|
{ |
820 |
1 |
return featureColours.keySet(); |
821 |
|
} |
822 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
823 |
16 |
public void clearRenderOrder()... |
824 |
|
{ |
825 |
16 |
renderOrder = null; |
826 |
|
} |
827 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
828 |
27881 |
public boolean hasRenderOrder()... |
829 |
|
{ |
830 |
27881 |
return renderOrder != null; |
831 |
|
} |
832 |
|
|
833 |
|
|
834 |
|
|
835 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
836 |
259 |
public List<String> getRenderOrder()... |
837 |
|
{ |
838 |
259 |
if (renderOrder == null) |
839 |
|
{ |
840 |
40 |
return Arrays.asList(new String[] {}); |
841 |
|
} |
842 |
219 |
return Arrays.asList(renderOrder); |
843 |
|
} |
844 |
|
|
|
|
| 66.7% |
Uncovered Elements: 1 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
845 |
2 |
public int getFeatureGroupsSize()... |
846 |
|
{ |
847 |
2 |
return featureGroups != null ? 0 : featureGroups.size(); |
848 |
|
} |
849 |
|
|
|
|
| 66.7% |
Uncovered Elements: 1 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
850 |
168 |
@Override... |
851 |
|
public List<String> getFeatureGroups() |
852 |
|
{ |
853 |
|
|
854 |
|
|
855 |
168 |
return (featureGroups == null) ? Arrays.asList(new String[0]) |
856 |
|
: Arrays.asList(featureGroups.keySet().toArray(new String[0])); |
857 |
|
} |
858 |
|
|
|
|
| 38.5% |
Uncovered Elements: 8 (13) |
Complexity: 4 |
Complexity Density: 0.57 |
|
859 |
49 |
public boolean checkGroupVisibility(String group,... |
860 |
|
boolean newGroupsVisible) |
861 |
|
{ |
862 |
49 |
if (featureGroups == null) |
863 |
|
{ |
864 |
|
|
865 |
|
} |
866 |
49 |
if (featureGroups.containsKey(group)) |
867 |
|
{ |
868 |
49 |
return featureGroups.get(group).booleanValue(); |
869 |
|
} |
870 |
0 |
if (newGroupsVisible) |
871 |
|
{ |
872 |
0 |
featureGroups.put(group, Boolean.valueOf(true)); |
873 |
0 |
return true; |
874 |
|
} |
875 |
0 |
return false; |
876 |
|
} |
877 |
|
|
878 |
|
|
879 |
|
|
880 |
|
|
881 |
|
@param |
882 |
|
|
883 |
|
@return |
884 |
|
|
|
|
| 66.7% |
Uncovered Elements: 4 (12) |
Complexity: 3 |
Complexity Density: 0.38 |
|
885 |
16 |
@Override... |
886 |
|
public List<String> getGroups(boolean visible) |
887 |
|
{ |
888 |
16 |
if (featureGroups != null) |
889 |
|
{ |
890 |
16 |
List<String> gp = new ArrayList<>(); |
891 |
|
|
892 |
16 |
for (String grp : featureGroups.keySet()) |
893 |
|
{ |
894 |
60 |
Boolean state = featureGroups.get(grp); |
895 |
60 |
if (state.booleanValue() == visible) |
896 |
|
{ |
897 |
0 |
gp.add(grp); |
898 |
|
} |
899 |
|
} |
900 |
16 |
return gp; |
901 |
|
} |
902 |
0 |
return null; |
903 |
|
} |
904 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
905 |
129 |
@Override... |
906 |
|
public void setGroupVisibility(String group, boolean visible) |
907 |
|
{ |
908 |
129 |
featureGroups.put(group, Boolean.valueOf(visible)); |
909 |
|
} |
910 |
|
|
|
|
| 0% |
Uncovered Elements: 14 (14) |
Complexity: 6 |
Complexity Density: 0.75 |
|
911 |
0 |
@Override... |
912 |
|
public void setGroupVisibility(List<String> toset, boolean visible) |
913 |
|
{ |
914 |
0 |
if (toset != null && toset.size() > 0 && featureGroups != null) |
915 |
|
{ |
916 |
0 |
boolean rdrw = false; |
917 |
0 |
for (String gst : toset) |
918 |
|
{ |
919 |
0 |
Boolean st = featureGroups.get(gst); |
920 |
0 |
featureGroups.put(gst, Boolean.valueOf(visible)); |
921 |
0 |
if (st != null) |
922 |
|
{ |
923 |
0 |
rdrw = rdrw || (visible != st.booleanValue()); |
924 |
|
} |
925 |
|
} |
926 |
0 |
if (rdrw) |
927 |
|
{ |
928 |
|
|
929 |
|
} |
930 |
|
} |
931 |
|
} |
932 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
|
933 |
22 |
@Override... |
934 |
|
public Map<String, FeatureColourI> getDisplayedFeatureCols() |
935 |
|
{ |
936 |
22 |
Map<String, FeatureColourI> fcols = new Hashtable<>(); |
937 |
22 |
if (getViewport().getFeaturesDisplayed() == null) |
938 |
|
{ |
939 |
5 |
return fcols; |
940 |
|
} |
941 |
17 |
Set<String> features = getViewport().getFeaturesDisplayed() |
942 |
|
.getVisibleFeatures(); |
943 |
17 |
for (String feature : features) |
944 |
|
{ |
945 |
26 |
fcols.put(feature, getFeatureStyle(feature)); |
946 |
|
} |
947 |
17 |
return fcols; |
948 |
|
} |
949 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
950 |
27591 |
@Override... |
951 |
|
public FeaturesDisplayedI getFeaturesDisplayed() |
952 |
|
{ |
953 |
27591 |
return av.getFeaturesDisplayed(); |
954 |
|
} |
955 |
|
|
956 |
|
|
957 |
|
|
958 |
|
|
959 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (13) |
Complexity: 3 |
Complexity Density: 0.33 |
|
960 |
106 |
@Override... |
961 |
|
public List<String> getDisplayedFeatureTypes() |
962 |
|
{ |
963 |
106 |
List<String> typ = getRenderOrder(); |
964 |
106 |
List<String> displayed = new ArrayList<>(); |
965 |
106 |
FeaturesDisplayedI feature_disp = av.getFeaturesDisplayed(); |
966 |
106 |
if (feature_disp != null) |
967 |
|
{ |
968 |
105 |
synchronized (feature_disp) |
969 |
|
{ |
970 |
105 |
for (String type : typ) |
971 |
|
{ |
972 |
303 |
if (feature_disp.isVisible(type)) |
973 |
|
{ |
974 |
285 |
displayed.add(type); |
975 |
|
} |
976 |
|
} |
977 |
|
} |
978 |
|
} |
979 |
106 |
return displayed; |
980 |
|
} |
981 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (7) |
Complexity: 2 |
Complexity Density: 0.4 |
|
982 |
10 |
@Override... |
983 |
|
public List<String> getDisplayedFeatureGroups() |
984 |
|
{ |
985 |
10 |
List<String> _gps = new ArrayList<>(); |
986 |
10 |
for (String gp : getFeatureGroups()) |
987 |
|
{ |
988 |
13 |
if (checkGroupVisibility(gp, false)) |
989 |
|
{ |
990 |
11 |
_gps.add(gp); |
991 |
|
} |
992 |
|
} |
993 |
10 |
return _gps; |
994 |
|
} |
995 |
|
|
996 |
|
|
997 |
|
|
998 |
|
|
999 |
|
|
1000 |
|
@param |
1001 |
|
@return |
1002 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1003 |
53876 |
public boolean featureGroupNotShown(final SequenceFeature sequenceFeature)... |
1004 |
|
{ |
1005 |
53877 |
return featureGroups != null && sequenceFeature.featureGroup != null |
1006 |
|
&& sequenceFeature.featureGroup.length() != 0 |
1007 |
|
&& featureGroups.containsKey(sequenceFeature.featureGroup) |
1008 |
|
&& !featureGroups.get(sequenceFeature.featureGroup) |
1009 |
|
.booleanValue(); |
1010 |
|
} |
1011 |
|
|
1012 |
|
|
1013 |
|
@inheritDoc |
1014 |
|
|
|
|
| 78.6% |
Uncovered Elements: 3 (14) |
Complexity: 5 |
Complexity Density: 0.5 |
|
1015 |
62 |
@Override... |
1016 |
|
public List<SequenceFeature> findFeaturesAtResidue(SequenceI sequence, |
1017 |
|
int fromResNo, int toResNo) |
1018 |
|
{ |
1019 |
62 |
List<SequenceFeature> result = new ArrayList<>(); |
1020 |
62 |
if (!av.areFeaturesDisplayed() || getFeaturesDisplayed() == null) |
1021 |
|
{ |
1022 |
0 |
return result; |
1023 |
|
} |
1024 |
|
|
1025 |
|
|
1026 |
|
|
1027 |
|
|
1028 |
|
|
1029 |
|
|
1030 |
62 |
List<String> visibleFeatures = getDisplayedFeatureTypes(); |
1031 |
62 |
String[] visibleTypes = visibleFeatures |
1032 |
|
.toArray(new String[visibleFeatures.size()]); |
1033 |
62 |
List<SequenceFeature> features = sequence.getFeatures() |
1034 |
|
.findFeatures(fromResNo, toResNo, visibleTypes); |
1035 |
|
|
1036 |
62 |
for (SequenceFeature sf : features) |
1037 |
|
{ |
1038 |
73 |
if (!featureGroupNotShown(sf) && getColour(sf) != null) |
1039 |
|
{ |
1040 |
73 |
result.add(sf); |
1041 |
|
} |
1042 |
|
} |
1043 |
62 |
return result; |
1044 |
|
} |
1045 |
|
|
1046 |
|
|
1047 |
|
|
1048 |
|
|
1049 |
|
|
1050 |
|
|
1051 |
|
|
1052 |
|
|
1053 |
|
@param |
1054 |
|
|
|
|
| 92% |
Uncovered Elements: 2 (25) |
Complexity: 12 |
Complexity Density: 0.8 |
|
1055 |
2452 |
public void filterFeaturesForDisplay(List<SequenceFeature> features)... |
1056 |
|
{ |
1057 |
|
|
1058 |
|
|
1059 |
|
|
1060 |
2452 |
if (Platform.isJS()) |
1061 |
|
{ |
1062 |
0 |
return; |
1063 |
|
} |
1064 |
|
|
1065 |
|
|
1066 |
|
|
1067 |
|
|
1068 |
|
|
1069 |
|
|
1070 |
2452 |
if (features.isEmpty() || transparency != 1f |
1071 |
|
|| !featureFilters.isEmpty()) |
1072 |
|
{ |
1073 |
2 |
return; |
1074 |
|
} |
1075 |
|
|
1076 |
2450 |
SequenceFeatures.sortFeatures(features, true); |
1077 |
2450 |
SequenceFeature lastFeature = null; |
1078 |
|
|
1079 |
2450 |
Iterator<SequenceFeature> it = features.iterator(); |
1080 |
20053 |
while (it.hasNext()) |
1081 |
|
{ |
1082 |
17603 |
SequenceFeature sf = it.next(); |
1083 |
17603 |
if (featureGroupNotShown(sf)) |
1084 |
|
{ |
1085 |
2 |
it.remove(); |
1086 |
2 |
continue; |
1087 |
|
} |
1088 |
|
|
1089 |
|
|
1090 |
|
|
1091 |
|
|
1092 |
|
|
1093 |
|
|
1094 |
|
|
1095 |
17601 |
if (lastFeature != null && sf.getBegin() == lastFeature.getBegin() |
1096 |
|
&& sf.getEnd() == lastFeature.getEnd() |
1097 |
|
&& sf.isContactFeature() == lastFeature.isContactFeature() |
1098 |
|
&& sf.getType().equals(lastFeature.getType())) |
1099 |
|
{ |
1100 |
3 |
it.remove(); |
1101 |
|
} |
1102 |
17601 |
lastFeature = sf; |
1103 |
|
} |
1104 |
|
} |
1105 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1106 |
15 |
@Override... |
1107 |
|
public Map<String, FeatureMatcherSetI> getFeatureFilters() |
1108 |
|
{ |
1109 |
15 |
return featureFilters; |
1110 |
|
} |
1111 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1112 |
0 |
@Override... |
1113 |
|
public void setFeatureFilters(Map<String, FeatureMatcherSetI> filters) |
1114 |
|
{ |
1115 |
0 |
featureFilters = filters; |
1116 |
|
} |
1117 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1118 |
212 |
@Override... |
1119 |
|
public FeatureMatcherSetI getFeatureFilter(String featureType) |
1120 |
|
{ |
1121 |
212 |
return featureFilters.get(featureType); |
1122 |
|
} |
1123 |
|
|
|
|
| 60% |
Uncovered Elements: 2 (5) |
Complexity: 3 |
Complexity Density: 1 |
|
1124 |
23 |
@Override... |
1125 |
|
public void setFeatureFilter(String featureType, |
1126 |
|
FeatureMatcherSetI filter) |
1127 |
|
{ |
1128 |
23 |
if (filter == null || filter.isEmpty()) |
1129 |
|
{ |
1130 |
0 |
featureFilters.remove(featureType); |
1131 |
|
} |
1132 |
|
else |
1133 |
|
{ |
1134 |
23 |
featureFilters.put(featureType, filter); |
1135 |
|
} |
1136 |
|
} |
1137 |
|
|
1138 |
|
|
1139 |
|
|
1140 |
|
|
1141 |
|
|
1142 |
|
|
1143 |
|
@param |
1144 |
|
@param |
1145 |
|
@return |
1146 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
1147 |
27594 |
public Color getColor(SequenceFeature sf, FeatureColourI fc)... |
1148 |
|
{ |
1149 |
|
|
1150 |
|
|
1151 |
|
|
1152 |
27595 |
if (featureGroupNotShown(sf)) |
1153 |
|
{ |
1154 |
8 |
return null; |
1155 |
|
} |
1156 |
|
|
1157 |
|
|
1158 |
|
|
1159 |
|
|
1160 |
27587 |
if (!featureMatchesFilters(sf)) |
1161 |
|
{ |
1162 |
6 |
return null; |
1163 |
|
} |
1164 |
|
|
1165 |
27581 |
return fc.getColor(sf); |
1166 |
|
} |
1167 |
|
|
1168 |
|
|
1169 |
|
|
1170 |
|
|
1171 |
|
|
1172 |
|
|
1173 |
|
@param |
1174 |
|
@return |
1175 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
1176 |
27625 |
protected boolean featureMatchesFilters(SequenceFeature sf)... |
1177 |
|
{ |
1178 |
27625 |
FeatureMatcherSetI filter = featureFilters.get(sf.getType()); |
1179 |
27625 |
return filter == null ? true : filter.matches(sf); |
1180 |
|
} |
1181 |
|
|
1182 |
|
|
1183 |
|
|
1184 |
|
|
1185 |
|
|
1186 |
|
@param |
1187 |
|
@return |
1188 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
1189 |
0 |
public boolean isGroupVisible(String group)... |
1190 |
|
{ |
1191 |
0 |
if (!featureGroups.containsKey(group)) |
1192 |
|
{ |
1193 |
0 |
return true; |
1194 |
|
} |
1195 |
0 |
return featureGroups.get(group); |
1196 |
|
} |
1197 |
|
|
1198 |
|
|
1199 |
|
|
1200 |
|
|
1201 |
|
|
1202 |
|
@param |
1203 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
1204 |
67 |
public void orderFeatures(Comparator<String> order)... |
1205 |
|
{ |
1206 |
67 |
Arrays.sort(renderOrder, order); |
1207 |
|
} |
1208 |
|
|
|
|
| 83.6% |
Uncovered Elements: 9 (55) |
Complexity: 9 |
Complexity Density: 0.23 |
|
1209 |
2 |
@Override... |
1210 |
|
public MappedFeatures findComplementFeaturesAtResidue( |
1211 |
|
final SequenceI sequence, final int pos) |
1212 |
|
{ |
1213 |
2 |
SequenceI ds = sequence.getDatasetSequence(); |
1214 |
2 |
if (ds == null) |
1215 |
|
{ |
1216 |
0 |
ds = sequence; |
1217 |
|
} |
1218 |
2 |
final char residue = ds.getCharAt(pos - ds.getStart()); |
1219 |
|
|
1220 |
2 |
List<SequenceFeature> found = new ArrayList<>(); |
1221 |
2 |
List<AlignedCodonFrame> mappings = this.av.getAlignment() |
1222 |
|
.getCodonFrame(sequence); |
1223 |
|
|
1224 |
|
|
1225 |
|
|
1226 |
|
|
1227 |
|
|
1228 |
2 |
if (mappings.isEmpty()) |
1229 |
|
{ |
1230 |
2 |
mappings = this.av.getCodingComplement().getAlignment() |
1231 |
|
.getCodonFrame(sequence); |
1232 |
|
} |
1233 |
|
|
1234 |
|
|
1235 |
|
|
1236 |
|
|
1237 |
|
|
1238 |
2 |
SequenceToSequenceMapping mapping = null; |
1239 |
2 |
SequenceI mapFrom = null; |
1240 |
|
|
1241 |
2 |
for (AlignedCodonFrame acf : mappings) |
1242 |
|
{ |
1243 |
2 |
mapping = acf.getCoveringCodonMapping(ds); |
1244 |
2 |
if (mapping == null) |
1245 |
|
{ |
1246 |
0 |
continue; |
1247 |
|
} |
1248 |
2 |
SearchResultsI sr = new SearchResults(); |
1249 |
2 |
mapping.markMappedRegion(ds, pos, sr); |
1250 |
2 |
for (SearchResultMatchI match : sr.getResults()) |
1251 |
|
{ |
1252 |
2 |
int fromRes = match.getStart(); |
1253 |
2 |
int toRes = match.getEnd(); |
1254 |
2 |
mapFrom = match.getSequence(); |
1255 |
2 |
List<SequenceFeature> fs = findFeaturesAtResidue(mapFrom, fromRes, |
1256 |
|
toRes); |
1257 |
2 |
for (SequenceFeature sf : fs) |
1258 |
|
{ |
1259 |
3 |
if (!found.contains(sf)) |
1260 |
|
{ |
1261 |
3 |
found.add(sf); |
1262 |
|
} |
1263 |
|
} |
1264 |
|
} |
1265 |
|
|
1266 |
|
|
1267 |
|
|
1268 |
|
|
1269 |
2 |
if (!found.isEmpty()) |
1270 |
|
{ |
1271 |
2 |
break; |
1272 |
|
} |
1273 |
|
} |
1274 |
2 |
if (found.isEmpty()) |
1275 |
|
{ |
1276 |
0 |
return null; |
1277 |
|
} |
1278 |
|
|
1279 |
|
|
1280 |
|
|
1281 |
|
|
1282 |
|
|
1283 |
2 |
List<SequenceFeature> result = new ArrayList<>(); |
1284 |
2 |
final int toAdd = found.size(); |
1285 |
2 |
int added = 0; |
1286 |
2 |
for (String type : renderOrder) |
1287 |
|
{ |
1288 |
3 |
for (SequenceFeature sf : found) |
1289 |
|
{ |
1290 |
4 |
if (type.equals(sf.getType())) |
1291 |
|
{ |
1292 |
3 |
result.add(sf); |
1293 |
3 |
added++; |
1294 |
|
} |
1295 |
4 |
if (added == toAdd) |
1296 |
|
{ |
1297 |
2 |
break; |
1298 |
|
} |
1299 |
|
} |
1300 |
|
} |
1301 |
|
|
1302 |
2 |
return new MappedFeatures(mapping.getMapping(), mapFrom, pos, residue, |
1303 |
|
result); |
1304 |
|
} |
1305 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (22) |
Complexity: 8 |
Complexity Density: 0.67 |
|
1306 |
46 |
@Override... |
1307 |
|
public boolean isVisible(SequenceFeature feature) |
1308 |
|
{ |
1309 |
46 |
if (feature == null) |
1310 |
|
{ |
1311 |
1 |
return false; |
1312 |
|
} |
1313 |
45 |
if (getFeaturesDisplayed() == null |
1314 |
|
|| !getFeaturesDisplayed().isVisible(feature.getType())) |
1315 |
|
{ |
1316 |
1 |
return false; |
1317 |
|
} |
1318 |
44 |
if (featureGroupNotShown(feature)) |
1319 |
|
{ |
1320 |
2 |
return false; |
1321 |
|
} |
1322 |
42 |
FeatureColourI fc = featureColours.get(feature.getType()); |
1323 |
42 |
if (fc != null && fc.isOutwithThreshold(feature)) |
1324 |
|
{ |
1325 |
4 |
return false; |
1326 |
|
} |
1327 |
38 |
if (!featureMatchesFilters(feature)) |
1328 |
|
{ |
1329 |
3 |
return false; |
1330 |
|
} |
1331 |
35 |
return true; |
1332 |
|
} |
1333 |
|
} |