| 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 |
|
|
| |
|
| 0% |
Uncovered Elements: 32 (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 |
|
|
| |
|
| 0% |
Uncovered Elements: 19 (19) |
Complexity: 4 |
Complexity Density: 0.31 |
|
| 54 |
0 |
public ScoreColourScheme(int symbolIndex[], double[] scores, double min,... |
| 55 |
|
double max) |
| 56 |
|
{ |
| 57 |
0 |
super(symbolIndex); |
| 58 |
|
|
| 59 |
0 |
this.scores = scores; |
| 60 |
0 |
this.min = min; |
| 61 |
0 |
this.max = max; |
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
0 |
int iSize = scores.length; |
| 66 |
0 |
colors = new Color[scores.length]; |
| 67 |
0 |
for (int i = 0; i < iSize; i++) |
| 68 |
|
{ |
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
0 |
float score = (float) (scores[i] - (float) min) / (float) (max - min); |
| 73 |
|
|
| 74 |
0 |
if (score > 1.0f) |
| 75 |
|
{ |
| 76 |
0 |
score = 1.0f; |
| 77 |
|
} |
| 78 |
|
|
| 79 |
0 |
if (score < 0.0f) |
| 80 |
|
{ |
| 81 |
0 |
score = 0.0f; |
| 82 |
|
} |
| 83 |
0 |
colors[i] = makeColour(score); |
| 84 |
|
} |
| 85 |
|
} |
| 86 |
|
|
| |
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 87 |
0 |
@Override... |
| 88 |
|
public Color findColour(char c, int j, SequenceI seq) |
| 89 |
|
{ |
| 90 |
0 |
if (Comparison.isGap(c)) |
| 91 |
|
{ |
| 92 |
0 |
return Color.white; |
| 93 |
|
} |
| 94 |
0 |
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 |
|
} |