GPL license added
[jalview.git] / src / jalview / schemes / ConservationColourScheme.java
index cef65c2..8c3f694 100755 (executable)
@@ -1,73 +1,75 @@
-/* Jalview - a java multiple alignment editor\r
- * Copyright (C) 1998  Michele Clamp\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
- * as published by the Free Software Foundation; either version 2\r
- * of the License, or (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\r
- */\r
+/*\r
+* Jalview - A Sequence Alignment Editor and Viewer\r
+* Copyright (C) 2005 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
+* as published by the Free Software Foundation; either version 2\r
+* of the License, or (at your option) any later version.\r
+*\r
+* This program is distributed in the hope that it will be useful,\r
+* but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+* GNU General Public License for more details.\r
+*\r
+* You should have received a copy of the GNU General Public License\r
+* along with this program; if not, write to the Free Software\r
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
+*/\r
 \r
 package jalview.schemes;\r
 import java.awt.*;\r
-import jalview.gui.*;\r
-import jalview.datamodel.*;\r
 import jalview.analysis.*;\r
+import java.util.Vector;\r
 \r
 public class ConservationColourScheme extends ResidueColourScheme {\r
   public Conservation conserve;\r
   public ColourSchemeI cs;\r
   public int inc = 30;\r
-  int colourThreshold =  7;\r
 \r
   public ConservationColourScheme(Conservation cons, ColourSchemeI oldcs)\r
   {\r
     super();\r
     conserve = cons;\r
     cs = oldcs;\r
-\r
   }\r
 \r
+  public void setConsensus(Vector consensus)\r
+  {\r
+    this.consensus = consensus;\r
+    if(cs!=null)\r
+      cs.setConsensus(consensus);\r
+  }\r
 \r
-   public Color findColour(String s, int i, java.util.Vector v)\r
+   public Color findColour(String s, int i)\r
    {\r
      Color c = Color.white;\r
-     if(cs == null)\r
+     if (cs == null)\r
        return c;\r
 \r
-     if (colourThreshold > 0 && conserve.getConsSequence() != null)\r
+     char ch = conserve.getConsSequence().getSequence().charAt(i);\r
+     if (ch == '*' || ch == '+')\r
+     {\r
+       c = cs.findColour(s, i);\r
+     }\r
+     else\r
      {\r
-       if (conserve.getConsSequence().getSequence().charAt(i) == '*'\r
-           || conserve.getConsSequence().getSequence().charAt(i) == '+')\r
+       int tmp = 10;\r
+       int t = 0;\r
+       if (!jalview.util.Comparison.isGap(ch))\r
+         t = Integer.parseInt(ch + "");\r
+\r
+       c = cs.findColour(s, i);\r
+\r
+       while (tmp >= t)\r
        {\r
-           c = cs.findColour(s, i, v);\r
+         c = lighter(c, inc);\r
+         tmp--;\r
        }\r
-       else\r
-       {\r
-           int tmp = 10;\r
-           int t = 0;\r
-           if (!jalview.util.Comparison.isGap(conserve.getConsSequence().\r
-                                              getSequence().charAt(i)))\r
-             t = Integer.parseInt(conserve.getConsSequence().getSequence().\r
-                                  substring(i, i + 1));\r
 \r
-           c = cs.findColour(s, i, v);\r
-           while (tmp >= t)\r
-           {\r
-             c = lighter(c, inc);\r
-             tmp--;\r
-           }\r
-       }\r
      }\r
-     return c;\r
+\r
+   return c;\r
    }\r
 \r
 \r