X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FSequenceCollectionI.java;h=f681f11df6839222e8add6df30c46572b6402f7b;hb=8ca1ac83b31ae44e8025b246800a4671f44cbb0c;hp=7777dce8a7ba5939c05d0624f92af5750088c27b;hpb=ad15cff29620f960119f80176f1fd443da9f6763;p=jalview.git diff --git a/src/jalview/datamodel/SequenceCollectionI.java b/src/jalview/datamodel/SequenceCollectionI.java index 7777dce..f681f11 100644 --- a/src/jalview/datamodel/SequenceCollectionI.java +++ b/src/jalview/datamodel/SequenceCollectionI.java @@ -29,20 +29,26 @@ public interface SequenceCollectionI List getSequences( Map hiddenReps); + int getWidth(); + /** * * @return true if getSeqrep doesn't return null */ boolean hasSeqrep(); + /** * get the reference or representative sequence within this collection + * * @return null or the current reference sequence */ SequenceI getSeqrep(); + /** - * set the reference or representative sequence for this collection. - * Reference is assumed to be present within the collection. + * set the reference or representative sequence for this collection. Reference + * is assumed to be present within the collection. + * * @return */ void setSeqrep(SequenceI refseq); @@ -58,4 +64,10 @@ public interface SequenceCollectionI */ int getEndRes(); + /** + * Answers true if sequence data is nucleotide (according to some heuristic) + * + * @return + */ + boolean isNucleotide(); }