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.ProfilesI;
25 import jalview.datamodel.SequenceCollectionI;
26 import jalview.datamodel.SequenceI;
28 import java.awt.Color;
31 public interface ColourSchemeI
36 * @return the colour for the given character
38 public Color findColour(char c);
43 * - sequence symbol or gap
47 * - sequence being coloured
48 * @return context dependent colour for the given symbol at the position in
51 public Color findColour(char c, int j, SequenceI seq);
54 * assign the given consensus profile for the colourscheme
56 public void setConsensus(ProfilesI hconsensus);
59 * assign the given conservation to the colourscheme
63 public void setConservation(jalview.analysis.Conservation c);
66 * enable or disable conservation shading for this colourscheme
68 * @param conservationApplied
70 public void setConservationApplied(boolean conservationApplied);
74 * @return true if conservation shading is enabled for this colourscheme
76 public boolean conservationApplied();
79 * set scale factor for bleaching of colour in unconserved regions
83 public void setConservationInc(int i);
87 * @return scale factor for bleaching colour in unconserved regions
89 public int getConservationInc();
93 * @return percentage identity threshold for applying colourscheme
95 public int getThreshold();
98 * set percentage identity threshold and type of %age identity calculation for
102 * 0..100 percentage identity for applying this colourscheme
104 * when true, calculate PID without including gapped positions
106 public void setThreshold(int ct, boolean ignoreGaps);
109 * recalculate dependent data using the given sequence collection, taking
110 * account of hidden rows
115 public void alignmentChanged(AnnotatedCollectionI alignment,
116 Map<SequenceI, SequenceCollectionI> hiddenReps);
119 * create a new instance of the colourscheme configured to colour the given
123 * @param hiddenRepSequences
124 * @return copy of current scheme with any inherited settings transfered
126 public ColourSchemeI applyTo(AnnotatedCollectionI sg,
127 Map<SequenceI, SequenceCollectionI> hiddenRepSequences);