X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemes%2FResidueColourScheme.java;h=666834e9dc90c2008a67cbeb46a4ac838b57b87a;hb=2d62dfc20ea72f47f3dfc44dfe78d6f451342716;hp=bbba8654713a29ee46aa9174b58b69311ed9d7e0;hpb=b81d4d7d46ea8b1c89df086fb847baab6b69d427;p=jalview.git diff --git a/src/jalview/schemes/ResidueColourScheme.java b/src/jalview/schemes/ResidueColourScheme.java index bbba865..666834e 100755 --- a/src/jalview/schemes/ResidueColourScheme.java +++ b/src/jalview/schemes/ResidueColourScheme.java @@ -35,7 +35,7 @@ import java.util.Map; */ public class ResidueColourScheme implements ColourSchemeI { - + final int[] symbolIndex; boolean conservationColouring = false; Color[] colors = null; @@ -58,23 +58,32 @@ public class ResidueColourScheme implements ColourSchemeI /** * Creates a new ResidueColourScheme object. - * + * @param final int[] index table into colors (ResidueProperties.naIndex or ResidueProperties.aaIndex) * @param colors - * DOCUMENT ME! + * colours for symbols in sequences * @param threshold - * DOCUMENT ME! + * threshold for conservation shading */ - public ResidueColourScheme(Color[] colours, int threshold) + public ResidueColourScheme(int[] aaOrnaIndex, Color[] colours, int threshold) { + symbolIndex = aaOrnaIndex; this.colors = colours; this.threshold = threshold; } /** - * Creates a new ResidueColourScheme object. + * Creates a new ResidueColourScheme object with a lookup table for indexing the colour map + */ + public ResidueColourScheme(int[] aaOrNaIndex) + { + symbolIndex = aaOrNaIndex; + } + /** + * Creates a new ResidueColourScheme object - default constructor for non-sequence dependent colourschemes */ public ResidueColourScheme() { + symbolIndex = null; } /** @@ -83,7 +92,7 @@ public class ResidueColourScheme implements ColourSchemeI public Color findColour(char c) { return colors == null ? Color.white - : colors[ResidueProperties.aaIndex[c]]; + : colors[symbolIndex[c]]; } @Override @@ -91,9 +100,9 @@ public class ResidueColourScheme implements ColourSchemeI { Color currentColour; - if ((threshold == 0) || aboveThreshold(c, j)) + if (colors!=null && symbolIndex!=null && (threshold == 0) || aboveThreshold(c, j)) { - currentColour = colors[ResidueProperties.aaIndex[c]]; + currentColour = colors[symbolIndex[c]]; } else {