JAL-2629 remove annotation when exporting for hmmbuild
[jalview.git] / src / jalview / datamodel / AlignmentAnnotation.java
index e8e8d01..8f826f5 100755 (executable)
@@ -51,8 +51,6 @@ public class AlignmentAnnotation
 
   public static final int CDNA_PROFILE = 2;
 
-  HiddenMarkovModel hmm;
-
   private static long counter = 0;
 
   /**
@@ -1506,13 +1504,4 @@ public class AlignmentAnnotation
     return graphMin < graphMax;
   }
 
-  public void setHMM(HiddenMarkovModel markov)
-  {
-    hmm = markov;
-  }
-
-  public HiddenMarkovModel getHMM()
-  {
-    return hmm;
-  }
 }