aaIndex replaces aaHash
[jalview.git] / src / jalview / schemes / NucleotideColourScheme.java
index 8785954..6aaef7d 100755 (executable)
@@ -1,6 +1,6 @@
 /*\r
 * Jalview - A Sequence Alignment Editor and Viewer\r
-* Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
+* Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
 *\r
 * This program is free software; you can redistribute it and/or\r
 * modify it under the terms of the GNU General Public License\r
@@ -47,7 +47,7 @@ public class NucleotideColourScheme extends ResidueColourScheme
     public Color findColour(String n)\r
     {\r
         // System.out.println("called"); log.debug\r
-        return colors[((Integer) (ResidueProperties.nucleotideHash.get(n))).intValue()];\r
+        return colors[ResidueProperties.nucleotideIndex[n.charAt(0)]];\r
     }\r
 \r
     /**\r
@@ -64,7 +64,7 @@ public class NucleotideColourScheme extends ResidueColourScheme
         {\r
             try\r
             {\r
-                return colors[((Integer) (ResidueProperties.nucleotideHash.get(n))).intValue()];\r
+                currentColour = colors[ ResidueProperties.nucleotideIndex[n.charAt(0)]];\r
             }\r
             catch (Exception ex)\r
             {\r
@@ -75,5 +75,10 @@ public class NucleotideColourScheme extends ResidueColourScheme
         {\r
             return Color.white;\r
         }\r
+\r
+        if(conservationColouring)\r
+         applyConservation(j);\r
+\r
+       return currentColour;\r
     }\r
 }\r