2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
21 package jalview.schemes;
23 import jalview.datamodel.AlignmentAnnotation;
25 import java.awt.Color;
26 import java.util.Hashtable;
29 * Became RNAHelicesColour.java. Placeholder for true covariation color scheme
31 * @author Lauren Michelle Lui
34 public class CovariationColourScheme extends ResidueColourScheme
36 public Hashtable helixcolorhash = new Hashtable();
38 public Hashtable positionsToHelix = new Hashtable();
42 public AlignmentAnnotation annotation;
45 * Creates a new CovariationColourScheme object.
47 public CovariationColourScheme(AlignmentAnnotation annotation)
49 this.annotation = annotation;
51 for (int x = 0; x < this.annotation._rnasecstr.length; x++)
53 // System.out.println(this.annotation._rnasecstr[x] + " Begin" +
54 // this.annotation._rnasecstr[x].getBegin());
55 // System.out.println(this.annotation._rnasecstr[x].getFeatureGroup());
56 // pairs.put(this.annotation._rnasecstr[x].getBegin(),
57 // this.annotation._rnasecstr[x].getEnd());
59 positionsToHelix.put(this.annotation._rnasecstr[x].getBegin(),
60 this.annotation._rnasecstr[x].getFeatureGroup());
61 positionsToHelix.put(this.annotation._rnasecstr[x].getEnd(),
62 this.annotation._rnasecstr[x].getFeatureGroup());
64 if (Integer.parseInt(this.annotation._rnasecstr[x].getFeatureGroup()) > numHelix)
66 numHelix = Integer.parseInt(this.annotation._rnasecstr[x]
72 for (int j = 0; j <= numHelix; j++)
74 helixcolorhash.put(Integer.toString(j),
75 jalview.util.ColorUtils.generateRandomColor(Color.white));
86 * @return DOCUMENT ME!
88 public Color findColour(char c)
90 // System.out.println("called"); log.debug
91 // Generate a random pastel color
93 return ResidueProperties.purinepyrimidine[ResidueProperties.purinepyrimidineIndex[c]];// jalview.util.ColorUtils.generateRandomColor(Color.white);
104 * @return DOCUMENT ME!
106 public Color findColour(char c, int j)
108 Color currentColour = Color.white;
109 String currentHelix = null;
110 // System.out.println(c + " " + j);
111 currentHelix = (String) positionsToHelix.get(j);
112 // System.out.println(positionsToHelix.get(j));
114 if (currentHelix != null)
116 currentColour = (Color) helixcolorhash.get(currentHelix);
119 // System.out.println(c + " " + j + " helix " + currentHelix + " " +
121 return currentColour;