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.api.AlignViewportI;
24 import jalview.datamodel.AlignmentAnnotation;
25 import jalview.datamodel.AnnotatedCollectionI;
26 import jalview.util.ColorUtils;
28 import java.awt.Color;
29 import java.util.Hashtable;
33 * Became RNAHelicesColour.java. Placeholder for true covariation color scheme
35 * @author Lauren Michelle Lui
38 public class CovariationColourScheme extends ResidueColourScheme
40 public Map<String, Color> helixcolorhash = new Hashtable<>();
42 public Map<Integer, String> positionsToHelix = new Hashtable<>();
46 public AlignmentAnnotation annotation;
49 * Returns a new instance of this colour scheme with which the given data may
53 public ColourSchemeI getInstance(AlignViewportI view,
54 AnnotatedCollectionI coll)
56 return new CovariationColourScheme(coll.getAlignmentAnnotation()[0]);
60 * Creates a new CovariationColourScheme object.
62 public CovariationColourScheme(AlignmentAnnotation annotation)
64 this.annotation = annotation;
66 for (int x = 0; x < this.annotation._rnasecstr.length; x++)
68 // System.out.println(this.annotation._rnasecstr[x] + " Begin" +
69 // this.annotation._rnasecstr[x].getBegin());
70 // System.out.println(this.annotation._rnasecstr[x].getFeatureGroup());
71 // pairs.put(this.annotation._rnasecstr[x].getBegin(),
72 // this.annotation._rnasecstr[x].getEnd());
74 positionsToHelix.put(this.annotation._rnasecstr[x].getBegin(),
75 this.annotation._rnasecstr[x].getFeatureGroup());
76 positionsToHelix.put(this.annotation._rnasecstr[x].getEnd(),
77 this.annotation._rnasecstr[x].getFeatureGroup());
80 this.annotation._rnasecstr[x].getFeatureGroup()) > numHelix)
83 .parseInt(this.annotation._rnasecstr[x].getFeatureGroup());
88 for (int j = 0; j <= numHelix; j++)
90 helixcolorhash.put(String.valueOf(j),
91 ColorUtils.generateRandomColor(Color.white));
102 * @return DOCUMENT ME!
105 public Color findColour(char c)
107 // System.out.println("called"); log.debug
108 // Generate a random pastel color
110 return ResidueProperties.purinepyrimidine[ResidueProperties.purinepyrimidineIndex[c]];// jalview.util.ColorUtils.generateRandomColor(Color.white);
121 * @return DOCUMENT ME!
123 public Color findColour(char c, int j)
125 Color currentColour = Color.white;
126 String currentHelix = null;
127 // System.out.println(c + " " + j);
128 currentHelix = positionsToHelix.get(j);
129 // System.out.println(positionsToHelix.get(j));
131 if (currentHelix != null)
133 currentColour = helixcolorhash.get(currentHelix);
136 // System.out.println(c + " " + j + " helix " + currentHelix + " " +
138 return currentColour;
142 public boolean isNucleotideSpecific()
148 public String getSchemeName()
150 return "Covariation";
154 public boolean isSimple()