2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
3 * Copyright (C) 2014 The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.datamodel;
23 import java.util.List;
24 import java.util.Vector;
26 import fr.orsay.lri.varna.models.rna.RNA;
34 public interface SequenceI
37 * Set the display name for the sequence
41 public void setName(String name);
44 * Get the display name
46 public String getName();
49 * Set start position of first non-gapped symbol in sequence
54 public void setStart(int start);
57 * get start position of first non-gapped residue in sequence
61 public int getStart();
64 * get the displayed id of the sequence
66 * @return true means the id will be returned in the form
67 * DisplayName/Start-End
69 public String getDisplayId(boolean jvsuffix);
72 * set end position for last residue in sequence
76 public void setEnd(int end);
79 * get end position for last residue in sequence getEnd()>getStart() unless
80 * sequence only consists of gap characters
87 * @return length of sequence including gaps
90 public int getLength();
93 * Replace the sequence with the given string
98 public void setSequence(String sequence);
101 * @return sequence as string
103 public String getSequenceAsString();
106 * get a range on the sequence as a string
109 * position relative to start of sequence including gaps (from 0)
111 * position relative to start of sequence including gaps (from 0)
113 * @return String containing all gap and symbols in specified range
115 public String getSequenceAsString(int start, int end);
118 * Get the sequence as a character array
120 * @return seqeunce and any gaps
122 public char[] getSequence();
125 * get stretch of sequence characters in an array
128 * absolute index into getSequence()
130 * exclusive index of last position in segment to be returned.
132 * @return char[max(0,end-start)];
134 public char[] getSequence(int start, int end);
137 * create a new sequence object from start to end of this sequence
145 public SequenceI getSubSequence(int start, int end);
153 * @return DOCUMENT ME!
155 public char getCharAt(int i);
163 public void setDescription(String desc);
168 * @return DOCUMENT ME!
170 public String getDescription();
173 * Return the alignment column for a sequence position * Return the alignment
174 * position for a sequence position
177 * lying from start to end
179 * @return aligned column for residue (0 if residue is upstream from
180 * alignment, -1 if residue is downstream from alignment) note.
181 * Sequence object returns sequence.getEnd() for positions upstream
182 * currently. TODO: change sequence for
183 * assert(findIndex(seq.getEnd()+1)==-1) and fix incremental bugs
186 public int findIndex(int pos);
189 * Returns the sequence position for an alignment position
192 * column index in alignment (from 1)
194 * @return residue number for residue (left of and) nearest ith column
196 public int findPosition(int i);
199 * Returns an int array where indices correspond to each residue in the
200 * sequence and the element value gives its position in the alignment
202 * @return int[SequenceI.getEnd()-SequenceI.getStart()+1] or null if no
203 * residues in SequenceI object
205 public int[] gapMap();
208 * Returns an int array where indices correspond to each position in sequence
209 * char array and the element value gives the result of findPosition for that
210 * index in the sequence.
212 * @return int[SequenceI.getLength()]
214 public int[] findPositionMap();
217 * Delete a range of aligned sequence columns, creating a new dataset sequence
218 * if necessary and adjusting start and end positions accordingly.
221 * first column in range to delete
223 * last column in range to delete
225 public void deleteChars(int i, int j);
235 public void insertCharAt(int i, char c);
245 public void insertCharAt(int i, int length, char c);
250 * @return DOCUMENT ME!
252 public SequenceFeature[] getSequenceFeatures();
260 public void setSequenceFeatures(SequenceFeature[] features);
268 public void setPDBId(Vector ids);
273 * @return DOCUMENT ME!
275 public Vector getPDBId();
278 * add entry to the vector of PDBIds, if it isn't in the list already
282 public void addPDBId(PDBEntry entry);
285 * update the list of PDBEntrys to include any DBRefEntrys citing structural
288 * @return true if PDBEntry list was modified
290 public boolean updatePDBIds();
292 public String getVamsasId();
294 public void setVamsasId(String id);
296 public void setDBRef(DBRefEntry[] dbs);
298 public DBRefEntry[] getDBRef();
301 * add the given entry to the list of DBRefs for this sequence, or replace a
302 * similar one if entry contains a map object and the existing one doesnt.
306 public void addDBRef(DBRefEntry entry);
308 public void addSequenceFeature(SequenceFeature sf);
310 public void deleteFeature(SequenceFeature sf);
312 public void setDatasetSequence(SequenceI seq);
314 public SequenceI getDatasetSequence();
316 public AlignmentAnnotation[] getAnnotation();
318 public void addAlignmentAnnotation(AlignmentAnnotation annotation);
320 public void removeAlignmentAnnotation(AlignmentAnnotation annotation);
323 * Derive a sequence (using this one's dataset or as the dataset)
325 * @return duplicate sequence with valid dataset sequence
327 public SequenceI deriveSequence();
330 * set the array of associated AlignmentAnnotation for this sequenceI
334 public void setAlignmentAnnotation(AlignmentAnnotation[] annotation);
337 * Get one or more alignment annotations with a particular label.
340 * string which each returned annotation must have as a label.
341 * @return null or array of annotations.
343 public AlignmentAnnotation[] getAnnotation(String label);
346 * Return a list of any annotations which match the given calcId (source) and
347 * label (type). Null values do not match.
353 public List<AlignmentAnnotation> getAlignmentAnnotations(String calcId,
357 * create a new dataset sequence (if necessary) for this sequence and sets
358 * this sequence to refer to it. This call will move any features or
359 * references on the sequence onto the dataset. It will also make a duplicate
360 * of existing annotation rows for the dataset sequence, rather than relocate
361 * them in order to preserve external references (since 2.8.2).
363 * @return dataset sequence for this sequence
365 public SequenceI createDatasetSequence();
368 * Transfer any database references or annotation from entry under a sequence
370 * <strong>Note: DOES NOT transfer sequence associated alignment
371 * annotation </strong><br/>
375 * null or mapping from entry's numbering to local start/end
377 public void transferAnnotation(SequenceI entry, Mapping mp);
381 * The sequence index in the MSA
383 public void setIndex(int index);
386 * @return The index of the sequence in the alignment
388 public int getIndex();
391 * @return The RNA of the sequence in the alignment
400 public void setRNA(RNA rna);