Alignment quality with funky coloured histograms.
[jalview.git] / src / jalview / datamodel / Annotation.java
index 6179cfa..16ede50 100755 (executable)
@@ -18,4 +18,8 @@ public class Annotation
     secondaryStructure = ss;
     value = val;
   }
+  public Annotation(String displayChar, String desc, char ss, float val, Color colour) {
+    this(displayChar, desc, ss, val);
+    this.colour = colour;
+  }
 }