JAL-2629 add StringParameter
[jalview.git] / src / jalview / datamodel / AlignmentI.java
index edd5b66..f4ee3a2 100755 (executable)
@@ -580,21 +580,17 @@ public interface AlignmentI extends AnnotatedCollectionI
    */
   AlignedCodonFrame getMapping(SequenceI mapFrom, SequenceI mapTo);
 
+  public void setHiddenColumns(HiddenColumns cols);
+
   /**
-   * Calculate the visible start and end index of an alignment. The result is
-   * returned an int array where: int[0] = startIndex, and int[1] = endIndex.
+   * Insert a sequence at a position in an alignment
    * 
-   * @param hiddenCols
-   * @return
+   * @param i
+   *          The idnex of the position.
+   * @param snew
+   *          The new sequence.
    */
-  public int[] getVisibleStartAndEndIndex(List<int[]> hiddenCols);
-
-  public void setHiddenColumns(HiddenColumns cols);
-
-  public Map<Integer, SequenceI> getHMMConsensusSequences(boolean remove);
-  
-  public List<SequenceI> getHMMConsensusSequences();
-  
+  void insertSequenceAt(int i, SequenceI snew);