X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FAlignmentI.java;h=baaebc2a1079e85abb541e7d14cee9b8d93df723;hb=dd74fc4938723fe5ec48d4e5fdcfbe58ac42a48d;hp=71ba3e049312c90c601317a14a622f8de6cbbda2;hpb=52c2c3879d5dc5e7b4ba7916f1ea964f83551f95;p=jalview.git diff --git a/src/jalview/datamodel/AlignmentI.java b/src/jalview/datamodel/AlignmentI.java index 71ba3e0..baaebc2 100755 --- a/src/jalview/datamodel/AlignmentI.java +++ b/src/jalview/datamodel/AlignmentI.java @@ -18,8 +18,6 @@ */ package jalview.datamodel; -import jalview.util.ShiftList; - import java.util.*; @@ -41,12 +39,6 @@ public interface AlignmentI */ public int getWidth(); - /** - * Calculates the longest sequence Id of the alignment - * - * @return Number of characters in longest sequence Id. - */ - public int getMaxIdLength(); /** * Calculates if this set of sequences is all the same length @@ -94,7 +86,7 @@ public interface AlignmentI public void setSequenceAt(int i, SequenceI seq); /** - * Deletes a sequence from the alignment. + * Deletes a sequence from the alignment * * @param s Sequence to be deleted. */ @@ -109,15 +101,6 @@ public interface AlignmentI /** - * Deletes all residues in every sequence of alignment within given columns. - * - * @param start Start index of columns to delete. - * @param end End index to columns to delete. - */ - public void deleteColumns(SequenceI seqs [], int start, int end); - - - /** * Finds sequence in alignment using sequence name as query. * * @param name Id of sequence to search for. @@ -137,29 +120,6 @@ public interface AlignmentI */ public int findIndex(SequenceI s); - /** - * All sequences will be cut from beginning to given index. - * - * @param i Remove all residues in sequences up to this column. - */ - public void trimLeft(int i); - - /** - * All sequences will be cut from given index. - * - * @param i Remove all residues in sequences beyond this column. - */ - public void trimRight(int i); - - /** - * Removes all columns containing entirely gap characters. - */ - public void removeGaps(); - /** - * remove gaps in alignment - recording any frame shifts in shiftrecord - * @param shiftrecord - */ - public void removeGaps(ShiftList shiftrecord); /** * Finds group that given sequence is part of. @@ -268,7 +228,6 @@ public interface AlignmentI */ public boolean padGaps(); - public void adjustSequenceAnnotations(); public HiddenSequences getHiddenSequences(); /**