(JAL-811) new 'annotation type' field for marking annotation rows generated by alignm...
authorjprocter <jprocter@compbio.dundee.ac.uk>
Thu, 3 Nov 2011 17:28:21 +0000 (17:28 +0000)
committerjprocter <jprocter@compbio.dundee.ac.uk>
Thu, 3 Nov 2011 17:29:41 +0000 (17:29 +0000)
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;
+  }
   
 }