Conservation colour scheme is no more
[jalview.git] / src / jalview / schemes / ResidueColourScheme.java
index 3181cf4..c435f7d 100755 (executable)
@@ -18,6 +18,8 @@
 */\r
 package jalview.schemes;\r
 \r
+import jalview.analysis.*;\r
+\r
 import java.awt.*;\r
 \r
 import java.util.*;\r
@@ -31,14 +33,31 @@ import java.util.*;
  */\r
 public class ResidueColourScheme implements ColourSchemeI\r
 {\r
+\r
+    boolean conservationColouring = false;\r
+    boolean consensusColouring = false;\r
+\r
     Color[] colors;\r
     int threshold = 0;\r
 \r
     /* Set when threshold colouring to either pid_gaps or pid_nogaps*/\r
     protected String ignoreGaps = "pid_gaps";\r
 \r
-    /** DOCUMENT ME!! */\r
-    public Hashtable [] consensus;\r
+    /** Consenus as a hashtable array */\r
+    Hashtable [] consensus;\r
+\r
+    /** Conservation string as a char array */\r
+   char [] conservation;\r
+\r
+   /** DOCUMENT ME!! */\r
+   int inc = 30;\r
+\r
+   /**\r
+    * The colour to be calculated, manipulated and returned\r
+    */\r
+   Color currentColour = null;\r
+\r
+\r
 \r
     /**\r
      * Creates a new ResidueColourScheme object.\r
@@ -46,9 +65,9 @@ public class ResidueColourScheme implements ColourSchemeI
      * @param colors DOCUMENT ME!\r
      * @param threshold DOCUMENT ME!\r
      */\r
-    public ResidueColourScheme(Color[] colors, int threshold)\r
+    public ResidueColourScheme(Color[] colours, int threshold)\r
     {\r
-        this.colors = colors;\r
+        this.colors = colours;\r
         this.threshold = threshold;\r
     }\r
 \r
@@ -60,54 +79,41 @@ public class ResidueColourScheme implements ColourSchemeI
     }\r
 \r
     /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param consensus DOCUMENT ME!\r
-     */\r
-    public void setConsensus(Vector vconsensus)\r
-    {\r
-       int i, iSize=vconsensus.size();\r
-       consensus = new Hashtable[iSize];\r
-       for(i=0; i<iSize; i++)\r
-        consensus[i] = (Hashtable)vconsensus.elementAt(i);\r
-    }\r
+    * Find a colour without an index in a sequence\r
+    */\r
+   public Color findColour(String aa)\r
+   {\r
+       return colors[((Integer) (ResidueProperties.aaHash.get(aa))).intValue()];\r
+   }\r
 \r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param aa DOCUMENT ME!\r
-     *\r
-     * @return DOCUMENT ME!\r
-     */\r
-    public Color findColour(String aa)\r
-    {\r
-        return colors[((Integer) (ResidueProperties.aaHash.get(aa))).intValue()];\r
-    }\r
 \r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param s DOCUMENT ME!\r
-     * @param j DOCUMENT ME!\r
-     *\r
-     * @return DOCUMENT ME!\r
-     */\r
-    public Color findColour(String s, int j)\r
-    {\r
-        if ((threshold == 0) || aboveThreshold(s, j))\r
-        {\r
-            return colors[((Integer) (ResidueProperties.aaHash.get(s))).intValue()];\r
-        }\r
-        else\r
-        {\r
-            return Color.white;\r
-        }\r
-    }\r
+\r
+   public Color findColour(String s, int j)\r
+   {\r
+\r
+       int index = ((Integer) (ResidueProperties.aaHash.get(s))).intValue();\r
+\r
+       if ((threshold == 0) || aboveThreshold(ResidueProperties.aa[index], j))\r
+       {\r
+           currentColour = colors[index];\r
+       }\r
+       else\r
+       {\r
+           currentColour = Color.white;\r
+       }\r
+\r
+       if(conservationColouring)\r
+         applyConservation(j);\r
+\r
+\r
+       return currentColour;\r
+   }\r
+\r
 \r
     /**\r
-     * DOCUMENT ME!\r
+     * Get the percentage threshold for this colour scheme\r
      *\r
-     * @return DOCUMENT ME!\r
+     * @return Returns the percentage threshold\r
      */\r
     public int getThreshold()\r
     {\r
@@ -138,14 +144,10 @@ public class ResidueColourScheme implements ColourSchemeI
      */\r
     public boolean aboveThreshold(String s, int j)\r
     {\r
-      if(consensus==null)\r
-        System.out.println("its null");\r
         if ((((Integer) consensus[j].get("maxCount")).intValue() != -1) &&\r
                 consensus[j].contains(s))\r
         {\r
-            float ratio =  ((Float)consensus[j].get(ignoreGaps)).floatValue();\r
-\r
-            if (ratio >= threshold)\r
+            if (((Float)consensus[j].get(ignoreGaps)).floatValue() >= threshold)\r
             {\r
                 return true;\r
             }\r
@@ -153,4 +155,128 @@ public class ResidueColourScheme implements ColourSchemeI
 \r
         return false;\r
     }\r
+\r
+\r
+    public boolean conservationApplied()\r
+    {\r
+      return conservationColouring;\r
+    }\r
+\r
+    public void setConservationInc(int i)\r
+    {\r
+      inc = i;\r
+    }\r
+\r
+    public int getConservationInc()\r
+    {\r
+      return inc;\r
+    }\r
+\r
+    /**\r
+     * DOCUMENT ME!\r
+     *\r
+     * @param consensus DOCUMENT ME!\r
+     */\r
+    public void setConsensus(Vector vconsensus)\r
+    {\r
+       int i, iSize=vconsensus.size();\r
+       consensus = new Hashtable[iSize];\r
+       for(i=0; i<iSize; i++)\r
+        consensus[i] = (Hashtable)vconsensus.elementAt(i);\r
+    }\r
+\r
+\r
+    public void setConservation(Conservation cons)\r
+    {\r
+      if(cons==null)\r
+      {\r
+        conservationColouring = false;\r
+        conservation = null;\r
+      }\r
+      else\r
+      {\r
+        conservationColouring = true;\r
+        int i, iSize = cons.getConsSequence().getLength();\r
+        conservation = new char[iSize];\r
+        for (i = 0; i < iSize; i++)\r
+          conservation[i] = cons.getConsSequence().getCharAt(i);\r
+      }\r
+\r
+    }\r
+\r
+\r
+    /**\r
+    * DOCUMENT ME!\r
+    *\r
+    * @param s DOCUMENT ME!\r
+    * @param i DOCUMENT ME!\r
+    *\r
+    * @return DOCUMENT ME!\r
+    */\r
+   void applyConservation(int i)\r
+   {\r
+       if ((conservation[i] != '*') && (conservation[i] != '+'))\r
+       {\r
+           int tmp = 10;\r
+           int t = 0;\r
+\r
+           if (!jalview.util.Comparison.isGap(conservation[i]))\r
+           {\r
+               t = conservation[i]-'0';\r
+           }\r
+\r
+           while (tmp >= t)\r
+           {\r
+               lighter(inc);\r
+               tmp--;\r
+           }\r
+       }\r
+\r
+   }\r
+\r
+    /**\r
+    * DOCUMENT ME!\r
+    *\r
+    * @param c DOCUMENT ME!\r
+    * @param inc DOCUMENT ME!\r
+    *\r
+    * @return DOCUMENT ME!\r
+    */\r
+   void lighter(int inc)\r
+   {\r
+       int red = currentColour.getRed();\r
+       int blue = currentColour.getBlue();\r
+       int green = currentColour.getGreen();\r
+\r
+       if (red < (255 - inc))\r
+       {\r
+           red = red + inc;\r
+       }\r
+       else\r
+       {\r
+           red = 255;\r
+       }\r
+\r
+       if (blue < (255 - inc))\r
+       {\r
+           blue = blue + inc;\r
+       }\r
+       else\r
+       {\r
+           blue = 255;\r
+       }\r
+\r
+       if (green < (255 - inc))\r
+       {\r
+           green = green + inc;\r
+       }\r
+       else\r
+       {\r
+           green = 255;\r
+       }\r
+\r
+       currentColour = new Color(red, green, blue);\r
+   }\r
+\r
+\r
 }\r