JAL-3215 remove redundant min/max constants, refactor ctr, add tests
[jalview.git] / src / jalview / schemes / ScoreColourScheme.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
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  * A base class for colour schemes which define a graduated colour range based
32  * on
33  * <ul>
34  * <li>a minimum colour</li>
35  * <li>a maximum colour</li>
36  * <li>a score assigned to each residue</li>
37  * </ul>
38  */
39 public class ScoreColourScheme extends ResidueColourScheme
40 {
41   public double min;
42
43   public double max;
44
45   public double[] scores;
46
47   /**
48    * Constructor
49    * 
50    * @param symbolIndex
51    *          a lookup where the index is a character e.g. 'R' or 'r', and the
52    *          value is its position in the colour table lookup
53    * @param scores
54    *          per residue, indices matching colors lookup
55    */
56   public ScoreColourScheme(int symbolIndex[], double[] scores)
57   {
58     super(symbolIndex);
59     setMinMax(scores);
60     this.scores = scores;
61
62     // Make colours in constructor
63     // Why wasn't this done earlier?
64     int iSize = scores.length;
65     colors = new Color[scores.length];
66     for (int i = 0; i < iSize; i++)
67     {
68       /*
69        * scale score between min and max to the range 0.0 - 1.0
70        */
71       float score = (float) (scores[i] - (float) min) / (float) (max - min);
72
73       if (score > 1.0f)
74       {
75         score = 1.0f;
76       }
77
78       if (score < 0.0f)
79       {
80         score = 0.0f;
81       }
82       colors[i] = makeColour(score);
83     }
84   }
85
86   /**
87    * Inspects score values and saves the minimum and maximum
88    * 
89    * @param vals
90    */
91   void setMinMax(double[] vals)
92   {
93     double dMin = Double.MAX_VALUE;
94     double dMax = -Double.MAX_VALUE;
95
96     for (int i = 0; i < vals.length - 1; i++)
97     {
98       dMin = Math.min(dMin, vals[i]);
99       dMax = Math.max(dMax, vals[i]);
100     }
101
102     this.min = vals.length == 0 ? 0d : dMin;
103     this.max = vals.length == 0 ? 0d : dMax;
104   }
105
106   @Override
107   public Color findColour(char c, int j, SequenceI seq)
108   {
109     if (Comparison.isGap(c))
110     {
111       return Color.white;
112     }
113     return super.findColour(c);
114   }
115
116   /**
117    * DOCUMENT ME!
118    * 
119    * @param c
120    *          DOCUMENT ME!
121    * 
122    * @return DOCUMENT ME!
123    */
124   public Color makeColour(float c)
125   {
126     return new Color(c, (float) 0.0, (float) 1.0 - c);
127   }
128
129   @Override
130   public String getSchemeName()
131   {
132     return "Score";
133   }
134
135   /**
136    * Returns a new instance of this colour scheme with which the given data may
137    * be coloured
138    */
139   @Override
140   public ColourSchemeI getInstance(AlignViewportI view,
141           AnnotatedCollectionI coll)
142   {
143     return new ScoreColourScheme(symbolIndex, scores);
144   }
145 }