X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FSequenceI.java;h=e0c738e9f263cf8967749425e05c216fc7baeefc;hb=25aaaa87042b3f507ad4348120df7dd073182759;hp=8376047444fb4cff5840e33e4ec2d7c036f44554;hpb=03496bf88fc1bec3ce628ac79ce69440ce244007;p=jalview.git diff --git a/src/jalview/datamodel/SequenceI.java b/src/jalview/datamodel/SequenceI.java index 8376047..e0c738e 100755 --- a/src/jalview/datamodel/SequenceI.java +++ b/src/jalview/datamodel/SequenceI.java @@ -1,5 +1,5 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1) * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. @@ -147,12 +147,12 @@ public interface SequenceI public SequenceI getSubSequence(int start, int end); /** - * DOCUMENT ME! + * get the i'th character in this sequence's local reference frame (ie from + * 0-number of characters lying from start-end) * * @param i - * DOCUMENT ME! - * - * @return DOCUMENT ME! + * index + * @return character or ' ' */ public char getCharAt(int i); @@ -315,8 +315,22 @@ public interface SequenceI public SequenceI getDatasetSequence(); + /** + * Returns a new array containing this sequence's annotations, or null. + */ public AlignmentAnnotation[] getAnnotation(); + /** + * Returns true if this sequence has the given annotation (by object + * identity). + */ + public boolean hasAnnotation(AlignmentAnnotation ann); + + /** + * Add the given annotation, if not already added, and set its sequence ref to + * be this sequence. Does nothing if this sequence's annotations already + * include this annotation (by identical object reference). + */ public void addAlignmentAnnotation(AlignmentAnnotation annotation); public void removeAlignmentAnnotation(AlignmentAnnotation annotation); @@ -345,12 +359,11 @@ public interface SequenceI public AlignmentAnnotation[] getAnnotation(String label); /** - * Return a list of any annotations which match the given calcId (source) and - * label (type). Null values do not match. + * Returns a (possibly empty) list of any annotations that match on given + * calcId (source) and label (type). Null values do not match. * * @param calcId * @param label - * @return */ public List getAlignmentAnnotations(String calcId, String label); @@ -401,4 +414,10 @@ public interface SequenceI */ public void setRNA(RNA rna); + /** + * + * @return list of insertions (gap characters) in sequence + */ + public List getInsertions(); + }