(JAL-811) new 'annotation type' field for marking annotation rows generated by alignm...
[jalview.git] / src / jalview / datamodel / AlignmentAnnotation.java
index 3cf9244..9de07dd 100755 (executable)
@@ -974,5 +974,19 @@ public class AlignmentAnnotation
   {
     return invalidrnastruc;
   }
+
+  /**
+   * machine readable ID string indicating what generated this annotation
+   */
+  protected String calcId="";
+  public String getCalcId()
+  {
+    return calcId;
+  }
+
+  public void setCalcId(String calcId)
+  {
+    this.calcId = calcId;
+  }
   
 }