JAL-2759 Moved propagateInsertions out of HiddenColumns
[jalview.git] / src / jalview / datamodel / AlignmentI.java
index bdc48d0..5fb16d6 100755 (executable)
@@ -593,4 +593,19 @@ public interface AlignmentI extends AnnotatedCollectionI
    */
   public void setupJPredAlignment();
 
+  /**
+   * Add gaps into the sequences aligned to profileseq under the given
+   * AlignmentView
+   * 
+   * @param profileseq
+   *          sequence in al which sequences are aligned to
+   * @param input
+   *          alignment view where sequence corresponding to profileseq is first
+   *          entry
+   * @return new HiddenColumns for new alignment view, with insertions into
+   *         profileseq marked as hidden.
+   */
+  public HiddenColumns propagateInsertions(SequenceI profileseq,
+          AlignmentView input);
+
 }