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.AnnotatedCollectionI;
24 import jalview.datamodel.SequenceCollectionI;
25 import jalview.datamodel.SequenceGroup;
26 import jalview.datamodel.SequenceI;
28 import java.awt.Color;
32 * Base class for residue-based colour schemes
34 public abstract class ResidueColourScheme implements ColourSchemeI
36 public static final String NONE = "None";
39 * default display name for a user defined colour scheme
41 public static final String USER_DEFINED = "User Defined";
44 * name for (new) "User Defined.." colour scheme menu item
46 public static final String USER_DEFINED_MENU = "*User Defined*";
49 * lookup up by character value e.g. 'G' to the colors array index
50 * e.g. if symbolIndex['K'] = 11 then colors[11] is the colour for K
52 final int[] symbolIndex;
55 * colour for residue characters as indexed by symbolIndex
57 Color[] colors = null;
59 /* Set when threshold colouring to either pid_gaps or pid_nogaps */
60 protected boolean ignoreGaps = false;
63 * Creates a new ResidueColourScheme object.
66 * int[] index table into colors (ResidueProperties.naIndex or
67 * ResidueProperties.aaIndex)
69 * colours for symbols in sequences
71 public ResidueColourScheme(int[] aaOrnaIndex, Color[] colours)
73 symbolIndex = aaOrnaIndex;
74 this.colors = colours;
78 * Creates a new ResidueColourScheme object with a lookup table for indexing
81 public ResidueColourScheme(int[] aaOrNaIndex)
83 symbolIndex = aaOrNaIndex;
87 * Creates a new ResidueColourScheme object - default constructor for
88 * non-sequence dependent colourschemes
90 public ResidueColourScheme()
96 * Find a colour without an index in a sequence
98 public Color findColour(char c)
100 Color colour = Color.white;
102 if (colors != null && symbolIndex != null && c < symbolIndex.length
103 && symbolIndex[c] < colors.length)
105 colour = colors[symbolIndex[c]];
112 * Default is to call the overloaded method that ignores consensus. A colour
113 * scheme that depends on consensus (for example, Blosum62), should override
114 * this method instead.
117 public Color findColour(char c, int j, SequenceI seq,
118 String consensusResidue, float pid)
120 return findColour(c, j, seq);
124 * Default implementation looks up the residue colour in a fixed scheme, or
125 * returns White if not found. Override this method for a colour scheme that
126 * depends on the column position or sequence.
133 protected Color findColour(char c, int j, SequenceI seq)
135 return findColour(c);
139 public void alignmentChanged(AnnotatedCollectionI alignment,
140 Map<SequenceI, SequenceCollectionI> hiddenReps)
145 * Answers false if the colour scheme is nucleotide or peptide specific, and
146 * the data does not match, else true. Override to modify or extend this test
150 public boolean isApplicableTo(AnnotatedCollectionI ac)
152 if (!isPeptideSpecific() && !isNucleotideSpecific())
161 * pop-up menu on selection group before group created
162 * (no alignment context)
164 // TODO: add nucleotide flag to SequenceGroup?
165 if (ac instanceof SequenceGroup && ac.getContext() == null)
171 * inspect the data context (alignment) for residue type
173 boolean nucleotide = ac.isNucleotide();
176 * does data type match colour scheme type?
178 return (nucleotide && isNucleotideSpecific())
179 || (!nucleotide && isPeptideSpecific());
183 * Answers true if the colour scheme is normally only for peptide data
187 public boolean isPeptideSpecific()
193 * Answers true if the colour scheme is normally only for nucleotide data
197 public boolean isNucleotideSpecific()
203 * Default method returns true. Override this to return false in colour
204 * schemes that are not determined solely by the sequence symbol.
207 public boolean isSimple()
213 * Default method returns false. Override this to return true in colour
214 * schemes that have a colour associated with gap residues.
217 public boolean hasGapColour()