Annotation adjustment moved to EditCommand
[jalview.git] / src / jalview / datamodel / AlignmentAnnotation.java
index a97ca7f..6803e9f 100755 (executable)
@@ -27,6 +27,12 @@ package jalview.datamodel;
  */
 public class AlignmentAnnotation
 {
+  /** If true, this annotations is calculated every edit,
+   * eg consensus, quality or conservation graphs */
+  public boolean autoCalculated = false;
+
+  public String annotationId = Math.random() +"";
+
     public SequenceI sequenceRef;
 
     /** DOCUMENT ME!! */