Merge branch 'develop' into features/mchmmer
[jalview.git] / src / jalview / datamodel / AlignmentI.java
index 084b80e..db45d1b 100755 (executable)
@@ -582,4 +582,16 @@ public interface AlignmentI extends AnnotatedCollectionI
 
   public void setHiddenColumns(HiddenColumns cols);
 
+  /**
+   * Insert a sequence at a position in an alignment
+   * 
+   * @param i
+   *          The idnex of the position.
+   * @param snew
+   *          The new sequence.
+   */
+  void insertSequenceAt(int i, SequenceI snew);
+
+  
+
 }