X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fdatamodel%2FSequenceI.java;h=6d34d07dfc6d8051edb1486bcbb92e702bfb200c;hb=f37c3fd4fe12799de498de5f397252e9f457fee9;hp=e5edc9197d31c11e2b20deb5afc0aee91c4d7cac;hpb=6dda78dd65a8f6f25356d9fe95078afbba4eadcd;p=jalview.git diff --git a/src/jalview/datamodel/SequenceI.java b/src/jalview/datamodel/SequenceI.java index e5edc91..6d34d07 100755 --- a/src/jalview/datamodel/SequenceI.java +++ b/src/jalview/datamodel/SequenceI.java @@ -24,6 +24,7 @@ import jalview.datamodel.features.SequenceFeaturesI; import jalview.util.MapList; import java.util.BitSet; +import java.util.Iterator; import java.util.List; import java.util.Vector; @@ -228,6 +229,13 @@ public interface SequenceI extends ASequenceI public int[] gapMap(); /** + * Build a bitset corresponding to sequence gaps + * + * @return a BitSet where set values correspond to gaps in the sequence + */ + public BitSet gapBitset(); + + /** * Returns an int array where indices correspond to each position in sequence * char array and the element value gives the result of findPosition for that * index in the sequence. @@ -491,16 +499,12 @@ public interface SequenceI extends ASequenceI */ public List getPrimaryDBRefs(); - public void updateHMMMapping(); - - boolean isHMMConsensusSequence(); - - void setIsHMMConsensusSequence(boolean isHMMConsensusSequence); - + /** + * Answers true if the sequence has annotation for Hidden Markov Model + * information content, else false + */ boolean hasHMMAnnotation(); - void setHasInfo(boolean status); - /** * Returns a (possibly empty) list of sequence features that overlap the given * alignment column range, optionally restricted to one or more specified @@ -531,8 +535,6 @@ public interface SequenceI extends ASequenceI */ BitSet getInsertionsAsBits(); - void mapToReference(AlignmentAnnotation rf); - /** * Replaces every occurrence of c1 in the sequence with c2 and returns the * number of characters changed @@ -559,4 +561,33 @@ public interface SequenceI extends ASequenceI */ void setGeneLoci(String speciesId, String assemblyId, String chromosomeId, MapList map); + + + /** + * Returns the sequence string constructed from the substrings of a sequence + * defined by the int[] ranges provided by an iterator. E.g. the iterator + * could iterate over all visible regions of the alignment + * + * @param it + * the iterator to use + * @return a String corresponding to the sequence + */ + String getSequenceStringFromIterator(Iterator it); + + /** + * Locate the first position in this sequence which is not contained in an + * iterator region. If no such position exists, return 0 + * + * @param it + * iterator over regions + * @return first residue not contained in regions + */ + int firstResidueOutsideIterator(Iterator it); + + /** + * Answers true if this sequence has an associated Hidden Markov Model + * + * @return + */ + boolean hasHMMProfile(); }