2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
19 package jalview.schemes;
\r
21 import jalview.analysis.*;
\r
32 * @version $Revision$
\r
34 public class ResidueColourScheme implements ColourSchemeI
\r
37 boolean conservationColouring = false;
\r
38 boolean consensusColouring = false;
\r
43 /* Set when threshold colouring to either pid_gaps or pid_nogaps*/
\r
44 protected String ignoreGaps = "pid_gaps";
\r
46 /** Consenus as a hashtable array */
\r
47 Hashtable [] consensus;
\r
49 /** Conservation string as a char array */
\r
50 char [] conservation;
\r
52 /** DOCUMENT ME!! */
\r
56 * The colour to be calculated, manipulated and returned
\r
58 Color currentColour = null;
\r
63 * Creates a new ResidueColourScheme object.
\r
65 * @param colors DOCUMENT ME!
\r
66 * @param threshold DOCUMENT ME!
\r
68 public ResidueColourScheme(Color[] colours, int threshold)
\r
70 this.colors = colours;
\r
71 this.threshold = threshold;
\r
75 * Creates a new ResidueColourScheme object.
\r
77 public ResidueColourScheme()
\r
82 * Find a colour without an index in a sequence
\r
84 public Color findColour(String aa)
\r
86 return colors[((Integer) (ResidueProperties.aaHash.get(aa))).intValue()];
\r
91 public Color findColour(String s, int j)
\r
94 int index = ((Integer) (ResidueProperties.aaHash.get(s))).intValue();
\r
96 if ((threshold == 0) || aboveThreshold(ResidueProperties.aa[index], j))
\r
98 currentColour = colors[index];
\r
102 currentColour = Color.white;
\r
105 if(conservationColouring)
\r
106 applyConservation(j);
\r
109 return currentColour;
\r
114 * Get the percentage threshold for this colour scheme
\r
116 * @return Returns the percentage threshold
\r
118 public int getThreshold()
\r
126 * @param ct DOCUMENT ME!
\r
128 public void setThreshold(int ct, boolean ignoreGaps)
\r
132 this.ignoreGaps = "pid_nogaps";
\r
134 this.ignoreGaps = "pid_gaps";
\r
140 * @param s DOCUMENT ME!
\r
141 * @param j DOCUMENT ME!
\r
143 * @return DOCUMENT ME!
\r
145 public boolean aboveThreshold(String s, int j)
\r
147 if ((((Integer) consensus[j].get("maxCount")).intValue() != -1) &&
\r
148 consensus[j].contains(s))
\r
150 if (((Float)consensus[j].get(ignoreGaps)).floatValue() >= threshold)
\r
160 public boolean conservationApplied()
\r
162 return conservationColouring;
\r
165 public void setConservationInc(int i)
\r
170 public int getConservationInc()
\r
178 * @param consensus DOCUMENT ME!
\r
180 public void setConsensus(Vector vconsensus)
\r
182 if(vconsensus==null)
\r
185 int i, iSize=vconsensus.size();
\r
186 consensus = new Hashtable[iSize];
\r
187 for(i=0; i<iSize; i++)
\r
188 consensus[i] = (Hashtable)vconsensus.elementAt(i);
\r
192 public void setConservation(Conservation cons)
\r
196 conservationColouring = false;
\r
197 conservation = null;
\r
201 conservationColouring = true;
\r
202 int i, iSize = cons.getConsSequence().getLength();
\r
203 conservation = new char[iSize];
\r
204 for (i = 0; i < iSize; i++)
\r
205 conservation[i] = cons.getConsSequence().getCharAt(i);
\r
214 * @param s DOCUMENT ME!
\r
215 * @param i DOCUMENT ME!
\r
217 * @return DOCUMENT ME!
\r
220 void applyConservation(int i)
\r
223 if ((conservation[i] != '*') && (conservation[i] != '+'))
\r
225 if(jalview.util.Comparison.isGap(conservation[i]))
\r
227 currentColour = Color.white;
\r
231 float t = 11 - (conservation[i] - '0');
\r
234 currentColour = Color.white;
\r
238 int red = currentColour.getRed();
\r
239 int green = currentColour.getGreen();
\r
240 int blue = currentColour.getBlue();
\r
242 int dr = 255 - red;
\r
243 int dg = 255 - green;
\r
244 int db = 255 - blue;
\r
250 red += (inc / 20f) * dr;
\r
251 green += (inc / 20f) * dg;
\r
252 blue += (inc / 20f) * db;
\r
254 if (red > 255 || green > 255 || blue > 255)
\r
255 currentColour = Color.white;
\r
257 currentColour = new Color(red, green, blue);
\r