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 java.awt.Color;
26 import jalview.datamodel.AlignmentI;
27 import jalview.datamodel.AnnotatedCollectionI;
28 import jalview.datamodel.SequenceCollectionI;
29 import jalview.datamodel.SequenceGroup;
30 import jalview.datamodel.SequenceI;
32 public interface ColourSchemeI
37 * @return the colour for the given character
39 public Color findColour(char c);
44 * - sequence symbol or gap
48 * - sequence being coloured
49 * @return context dependent colour for the given symbol at the position in
52 public Color findColour(char c, int j, SequenceI seq);
55 * assign the given consensus profile for the colourscheme
57 public void setConsensus(java.util.Hashtable[] h);
60 * assign the given conservation to the colourscheme
64 public void setConservation(jalview.analysis.Conservation c);
67 * enable or disable conservation shading for this colourscheme
69 * @param conservationApplied
71 public void setConservationApplied(boolean conservationApplied);
75 * @return true if conservation shading is enabled for this colourscheme
77 public boolean conservationApplied();
80 * set scale factor for bleaching of colour in unconserved regions
84 public void setConservationInc(int i);
88 * @return scale factor for bleaching colour in unconserved regions
90 public int getConservationInc();
94 * @return percentage identity threshold for applying colourscheme
96 public int getThreshold();
99 * set percentage identity threshold and type of %age identity calculation for
103 * 0..100 percentage identity for applying this colourscheme
105 * when true, calculate PID without including gapped positions
107 public void setThreshold(int ct, boolean ignoreGaps);
110 * recalculate dependent data using the given sequence collection, taking
111 * account of hidden rows
116 public void alignmentChanged(AnnotatedCollectionI alignment,
117 Map<SequenceI, SequenceCollectionI> hiddenReps);
120 * create a new instance of the colourscheme configured to colour the given
124 * @param hiddenRepSequences
125 * @return copy of current scheme with any inherited settings transfered
127 public ColourSchemeI applyTo(AnnotatedCollectionI sg,
128 Map<SequenceI, SequenceCollectionI> hiddenRepSequences);