JAL-2599 HMMs can now be dropped onto the desktop
[jalview.git] / src / jalview / datamodel / AlignmentAnnotation.java
index 31aeecc..8f826f5 100755 (executable)
@@ -53,8 +53,6 @@ public class AlignmentAnnotation
 
   private static long counter = 0;
 
-  private HiddenMarkovModel hmm;
-
   /**
    * If true, this annotations is calculated every edit, eg consensus, quality
    * or conservation graphs
@@ -1506,23 +1504,4 @@ public class AlignmentAnnotation
     return graphMin < graphMax;
   }
 
-  /**
-   * Returns the HMM associated with this annotation.
-   * 
-   * @return
-   */
-  public HiddenMarkovModel getHMM()
-  {
-    return hmm;
-  }
-
-  /**
-   * Sets the HMM associated with this annotation.
-   * 
-   * @param hmm
-   */
-  public void setHMM(HiddenMarkovModel hmm)
-  {
-    this.hmm = hmm;
-  }
 }