1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.schemes; |
22 |
|
|
23 |
|
import jalview.api.AlignViewportI; |
24 |
|
import jalview.datamodel.AnnotatedCollectionI; |
25 |
|
import jalview.datamodel.SequenceI; |
26 |
|
import jalview.util.Comparison; |
27 |
|
|
28 |
|
import java.awt.Color; |
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
@author |
34 |
|
@version |
35 |
|
|
|
|
| 75% |
Uncovered Elements: 8 (32) |
Complexity: 9 |
Complexity Density: 0.47 |
|
36 |
|
public class ScoreColourScheme extends ResidueColourScheme |
37 |
|
{ |
38 |
|
public double min; |
39 |
|
|
40 |
|
public double max; |
41 |
|
|
42 |
|
public double[] scores; |
43 |
|
|
44 |
|
|
45 |
|
|
46 |
|
|
47 |
|
@param |
48 |
|
|
49 |
|
@param |
50 |
|
|
51 |
|
@param |
52 |
|
|
53 |
|
|
|
|
| 89.5% |
Uncovered Elements: 2 (19) |
Complexity: 4 |
Complexity Density: 0.31 |
|
54 |
40 |
public ScoreColourScheme(int symbolIndex[], double[] scores, double min,... |
55 |
|
double max) |
56 |
|
{ |
57 |
40 |
super(symbolIndex); |
58 |
|
|
59 |
40 |
this.scores = scores; |
60 |
40 |
this.min = min; |
61 |
40 |
this.max = max; |
62 |
|
|
63 |
|
|
64 |
|
|
65 |
40 |
int iSize = scores.length; |
66 |
40 |
colors = new Color[scores.length]; |
67 |
1006 |
for (int i = 0; i < iSize; i++) |
68 |
|
{ |
69 |
|
|
70 |
|
|
71 |
|
|
72 |
966 |
float score = (float) (scores[i] - (float) min) / (float) (max - min); |
73 |
|
|
74 |
966 |
if (score > 1.0f) |
75 |
|
{ |
76 |
0 |
score = 1.0f; |
77 |
|
} |
78 |
|
|
79 |
966 |
if (score < 0.0f) |
80 |
|
{ |
81 |
66 |
score = 0.0f; |
82 |
|
} |
83 |
966 |
colors[i] = makeColour(score); |
84 |
|
} |
85 |
|
} |
86 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
87 |
1162 |
@Override... |
88 |
|
public Color findColour(char c, int j, SequenceI seq) |
89 |
|
{ |
90 |
1162 |
if (Comparison.isGap(c)) |
91 |
|
{ |
92 |
248 |
return Color.white; |
93 |
|
} |
94 |
914 |
return super.findColour(c); |
95 |
|
} |
96 |
|
|
97 |
|
|
98 |
|
|
99 |
|
|
100 |
|
@param |
101 |
|
|
102 |
|
|
103 |
|
@return |
104 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
105 |
0 |
public Color makeColour(float c)... |
106 |
|
{ |
107 |
0 |
return new Color(c, (float) 0.0, (float) 1.0 - c); |
108 |
|
} |
109 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
110 |
0 |
@Override... |
111 |
|
public String getSchemeName() |
112 |
|
{ |
113 |
0 |
return "Score"; |
114 |
|
} |
115 |
|
|
116 |
|
|
117 |
|
|
118 |
|
|
119 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
120 |
0 |
@Override... |
121 |
|
public ColourSchemeI getInstance(AlignViewportI view, |
122 |
|
AnnotatedCollectionI coll) |
123 |
|
{ |
124 |
0 |
return new ScoreColourScheme(symbolIndex, scores, min, max); |
125 |
|
} |
126 |
|
} |