Out of bounds check
[jalview.git] / src / jalview / schemes / ClustalxColourScheme.java
index 353accf..1e38a6d 100755 (executable)
@@ -248,6 +248,11 @@ public class ClustalxColourScheme
 \r
   public Color findColour(String s, int j)\r
   {\r
+\r
+    if(cons2.length<=j)\r
+      return currentColour;\r
+\r
+\r
     if ( (threshold != 0) && !aboveThreshold(s, j))\r
     {\r
       return Color.white;\r
@@ -262,13 +267,13 @@ public class ClustalxColourScheme
       return currentColour;\r
     }\r
 \r
-    for (int k = 0; k < ResidueColour[i].conses.length; k++)\r
+  for (int k = 0; k < ResidueColour[i].conses.length; k++)\r
+  {\r
+    if (ResidueColour[i].conses[k].isConserved(cons2, j, size))\r
     {\r
-      if (ResidueColour[i].conses[k].isConserved(cons2, j, size))\r
-      {\r
-        currentColour = ResidueColour[i].c;\r
-      }\r
+      currentColour = ResidueColour[i].c;\r
     }\r
+  }\r
 \r
     if (i == 4)\r
     {\r