2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ 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 jalview.analysis.AlignSeq;
24 import jalview.api.DBRefEntryI;
25 import jalview.datamodel.features.SequenceFeatures;
26 import jalview.datamodel.features.SequenceFeaturesI;
27 import jalview.util.Comparison;
28 import jalview.util.DBRefUtils;
29 import jalview.util.MapList;
30 import jalview.util.StringUtils;
32 import java.util.ArrayList;
33 import java.util.Arrays;
34 import java.util.BitSet;
35 import java.util.Collections;
36 import java.util.Enumeration;
37 import java.util.List;
38 import java.util.ListIterator;
39 import java.util.Vector;
41 import com.stevesoft.pat.Regex;
43 import fr.orsay.lri.varna.models.rna.RNA;
47 * Implements the SequenceI interface for a char[] based sequence object.
52 public class Sequence extends ASequence implements SequenceI
54 private static final Regex limitrx = new Regex(
55 "[/][0-9]{1,}[-][0-9]{1,}$");
57 private static final Regex endrx = new Regex("[0-9]{1,}$");
59 SequenceI datasetSequence;
63 private char[] sequence;
71 Vector<PDBEntry> pdbIds;
80 * This annotation is displayed below the alignment but the positions are tied
81 * to the residues of this sequence
83 * TODO: change to List<>
85 Vector<AlignmentAnnotation> annotation;
88 * The index of the sequence in a MSA
92 private SequenceFeatures sequenceFeatureStore;
95 * A cursor holding the approximate current view position to the sequence,
96 * as determined by findIndex or findPosition or findPositions.
97 * Using a cursor as a hint allows these methods to be more performant for
100 private SequenceCursor cursor;
103 * A number that should be incremented whenever the sequence is edited.
104 * If the value matches the cursor token, then we can trust the cursor,
105 * if not then it should be recomputed.
107 private int changeCount;
110 * Creates a new Sequence object.
113 * display name string
115 * string to form a possibly gapped sequence out of
117 * first position of non-gap residue in the sequence
119 * last position of ungapped residues (nearly always only used for
122 public Sequence(String name, String sequence, int start, int end)
125 initSeqAndName(name, sequence.toCharArray(), start, end);
128 public Sequence(String name, char[] sequence, int start, int end)
131 initSeqAndName(name, sequence, start, end);
135 * Stage 1 constructor - assign name, sequence, and set start and end fields.
136 * start and end are updated values from name2 if it ends with /start-end
143 protected void initSeqAndName(String name2, char[] sequence2, int start2,
147 this.sequence = sequence2;
159 "POSSIBLE IMPLEMENTATION ERROR: null sequence name passed to constructor.");
162 // Does sequence have the /start-end signature?
163 if (limitrx.search(name))
165 name = limitrx.left();
166 endrx.search(limitrx.stringMatched());
167 setStart(Integer.parseInt(limitrx.stringMatched().substring(1,
168 endrx.matchedFrom() - 1)));
169 setEnd(Integer.parseInt(endrx.stringMatched()));
173 void checkValidRange()
176 // http://issues.jalview.org/browse/JAL-774?focusedCommentId=11239&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-11239
179 for (int j = 0; j < sequence.length; j++)
181 if (!jalview.util.Comparison.isGap(sequence[j]))
200 * default constructor
204 sequenceFeatureStore = new SequenceFeatures();
208 * Creates a new Sequence object.
215 public Sequence(String name, String sequence)
217 this(name, sequence, 1, -1);
221 * Creates a new Sequence object with new AlignmentAnnotations but inherits
222 * any existing dataset sequence reference. If non exists, everything is
226 * if seq is a dataset sequence, behaves like a plain old copy
229 public Sequence(SequenceI seq)
231 this(seq, seq.getAnnotation());
235 * Create a new sequence object with new features, DBRefEntries, and PDBIds
236 * but inherits any existing dataset sequence reference, and duplicate of any
237 * annotation that is present in the given annotation array.
240 * the sequence to be copied
241 * @param alAnnotation
242 * an array of annotation including some associated with seq
244 public Sequence(SequenceI seq, AlignmentAnnotation[] alAnnotation)
247 initSeqFrom(seq, alAnnotation);
251 * does the heavy lifting when cloning a dataset sequence, or coping data from
252 * dataset to a new derived sequence.
255 * - source of attributes.
256 * @param alAnnotation
257 * - alignment annotation present on seq that should be copied onto
260 protected void initSeqFrom(SequenceI seq,
261 AlignmentAnnotation[] alAnnotation)
263 char[] oseq = seq.getSequence(); // returns a copy of the array
264 initSeqAndName(seq.getName(), oseq, seq.getStart(), seq.getEnd());
266 description = seq.getDescription();
267 if (seq != datasetSequence)
269 setDatasetSequence(seq.getDatasetSequence());
273 * only copy DBRefs and seqfeatures if we really are a dataset sequence
275 if (datasetSequence == null)
277 if (seq.getDBRefs() != null)
279 DBRefEntry[] dbr = seq.getDBRefs();
280 for (int i = 0; i < dbr.length; i++)
282 addDBRef(new DBRefEntry(dbr[i]));
287 * make copies of any sequence features
289 for (SequenceFeature sf : seq.getSequenceFeatures())
291 addSequenceFeature(new SequenceFeature(sf));
295 if (seq.getAnnotation() != null)
297 AlignmentAnnotation[] sqann = seq.getAnnotation();
298 for (int i = 0; i < sqann.length; i++)
300 if (sqann[i] == null)
304 boolean found = (alAnnotation == null);
307 for (int apos = 0; !found && apos < alAnnotation.length; apos++)
309 found = (alAnnotation[apos] == sqann[i]);
314 // only copy the given annotation
315 AlignmentAnnotation newann = new AlignmentAnnotation(sqann[i]);
316 addAlignmentAnnotation(newann);
320 if (seq.getAllPDBEntries() != null)
322 Vector<PDBEntry> ids = seq.getAllPDBEntries();
323 for (PDBEntry pdb : ids)
325 this.addPDBId(new PDBEntry(pdb));
331 public void setSequenceFeatures(List<SequenceFeature> features)
333 if (datasetSequence != null)
335 datasetSequence.setSequenceFeatures(features);
338 sequenceFeatureStore = new SequenceFeatures(features);
342 public synchronized boolean addSequenceFeature(SequenceFeature sf)
344 if (sf.getType() == null)
346 System.err.println("SequenceFeature type may not be null: "
351 if (datasetSequence != null)
353 return datasetSequence.addSequenceFeature(sf);
356 return sequenceFeatureStore.add(sf);
360 public void deleteFeature(SequenceFeature sf)
362 if (datasetSequence != null)
364 datasetSequence.deleteFeature(sf);
368 sequenceFeatureStore.delete(sf);
378 public List<SequenceFeature> getSequenceFeatures()
380 if (datasetSequence != null)
382 return datasetSequence.getSequenceFeatures();
384 return sequenceFeatureStore.getAllFeatures();
388 public SequenceFeaturesI getFeatures()
390 return datasetSequence != null ? datasetSequence.getFeatures()
391 : sequenceFeatureStore;
395 public boolean addPDBId(PDBEntry entry)
399 pdbIds = new Vector<PDBEntry>();
404 for (PDBEntry pdbe : pdbIds)
406 if (pdbe.updateFrom(entry))
411 pdbIds.addElement(entry);
422 public void setPDBId(Vector<PDBEntry> id)
430 * @return DOCUMENT ME!
433 public Vector<PDBEntry> getAllPDBEntries()
435 return pdbIds == null ? new Vector<PDBEntry>() : pdbIds;
441 * @return DOCUMENT ME!
444 public String getDisplayId(boolean jvsuffix)
446 StringBuffer result = new StringBuffer(name);
449 result.append("/" + start + "-" + end);
452 return result.toString();
462 public void setName(String name)
471 * @return DOCUMENT ME!
474 public String getName()
486 public void setStart(int start)
494 * @return DOCUMENT ME!
497 public int getStart()
509 public void setEnd(int end)
517 * @return DOCUMENT ME!
528 * @return DOCUMENT ME!
531 public int getLength()
533 return this.sequence.length;
543 public void setSequence(String seq)
545 this.sequence = seq.toCharArray();
551 public String getSequenceAsString()
553 return new String(sequence);
557 public String getSequenceAsString(int start, int end)
559 return new String(getSequence(start, end));
563 public char[] getSequence()
566 return sequence == null ? null : Arrays.copyOf(sequence,
573 * @see jalview.datamodel.SequenceI#getSequence(int, int)
576 public char[] getSequence(int start, int end)
582 // JBPNote - left to user to pad the result here (TODO:Decide on this
584 if (start >= sequence.length)
589 if (end >= sequence.length)
591 end = sequence.length;
594 char[] reply = new char[end - start];
595 System.arraycopy(sequence, start, reply, 0, end - start);
601 public SequenceI getSubSequence(int start, int end)
607 char[] seq = getSequence(start, end);
612 int nstart = findPosition(start);
613 int nend = findPosition(end) - 1;
614 // JBPNote - this is an incomplete copy.
615 SequenceI nseq = new Sequence(this.getName(), seq, nstart, nend);
616 nseq.setDescription(description);
617 if (datasetSequence != null)
619 nseq.setDatasetSequence(datasetSequence);
623 nseq.setDatasetSequence(this);
629 * Returns the character of the aligned sequence at the given position (base
630 * zero), or space if the position is not within the sequence's bounds
635 public char getCharAt(int i)
637 if (i >= 0 && i < sequence.length)
654 public void setDescription(String desc)
656 this.description = desc;
662 * @return DOCUMENT ME!
665 public String getDescription()
667 return this.description;
674 public int findIndex(int pos)
677 * use a valid, hopefully nearby, cursor if available
679 if (isValidCursor(cursor))
681 return findIndex(pos, cursor);
689 * traverse sequence from the start counting gaps; make a note of
690 * the column of the first residue to save in the cursor
692 while ((i < sequence.length) && (j <= end) && (j <= pos))
694 if (!Comparison.isGap(sequence[i]))
705 if (j == end && j < pos)
710 updateCursor(pos, i, startColumn);
715 * Updates the cursor to the latest found residue and column position
722 * column position of the first sequence residue
724 protected void updateCursor(int residuePos, int column, int startColumn)
727 * preserve end residue column provided cursor was valid
729 int endColumn = isValidCursor(cursor) ? cursor.lastColumnPosition : 0;
730 if (residuePos == this.end)
735 cursor = new SequenceCursor(this, residuePos, column, startColumn,
736 endColumn, this.changeCount);
740 * Answers the aligned column position (1..) for the given residue position
741 * (start..) given a 'hint' of a residue/column location in the neighbourhood.
742 * The hint may be left of, at, or to the right of the required position.
748 protected int findIndex(int pos, SequenceCursor curs)
750 if (!isValidCursor(curs))
753 * wrong or invalidated cursor, compute de novo
755 return findIndex(pos);
758 if (curs.residuePosition == pos)
760 return curs.columnPosition;
764 * move left or right to find pos from hint.position
766 int col = curs.columnPosition - 1; // convert from base 1 to 0-based array
768 int newPos = curs.residuePosition;
769 int delta = newPos > pos ? -1 : 1;
771 while (newPos != pos)
773 col += delta; // shift one column left or right
774 if (col < 0 || col == sequence.length)
778 if (!Comparison.isGap(sequence[col]))
784 col++; // convert back to base 1
785 updateCursor(pos, col, curs.firstColumnPosition);
794 public int findPosition(final int column)
797 * use a valid, hopefully nearby, cursor if available
799 if (isValidCursor(cursor))
801 return findPosition(column + 1, cursor);
804 // TODO recode this more naturally i.e. count residues only
805 // as they are found, not 'in anticipation'
808 * traverse the sequence counting gaps; note the column position
809 * of the first residue, to save in the cursor
811 int firstResidueColumn = 0;
812 int lastPosFound = 0;
813 int lastPosFoundColumn = 0;
814 int seqlen = sequence.length;
816 if (seqlen > 0 && !Comparison.isGap(sequence[0]))
818 lastPosFound = start;
819 lastPosFoundColumn = 0;
825 while (j < column && j < seqlen)
827 if (!Comparison.isGap(sequence[j]))
830 lastPosFoundColumn = j;
831 if (pos == this.start)
833 firstResidueColumn = j;
839 if (j < seqlen && !Comparison.isGap(sequence[j]))
842 lastPosFoundColumn = j;
843 if (pos == this.start)
845 firstResidueColumn = j;
850 * update the cursor to the last residue position found (if any)
851 * (converting column position to base 1)
853 if (lastPosFound != 0)
855 updateCursor(lastPosFound, lastPosFoundColumn + 1,
856 firstResidueColumn + 1);
863 * Answers true if the given cursor is not null, is for this sequence object,
864 * and has a token value that matches this object's changeCount, else false.
865 * This allows us to ignore a cursor as 'stale' if the sequence has been
866 * modified since the cursor was created.
871 protected boolean isValidCursor(SequenceCursor curs)
873 if (curs == null || curs.sequence != this || curs.token != changeCount)
878 * sanity check against range
880 if (curs.columnPosition < 0 || curs.columnPosition > sequence.length)
884 if (curs.residuePosition < start || curs.residuePosition > end)
892 * Answers the sequence position (start..) for the given aligned column
893 * position (1..), given a hint of a cursor in the neighbourhood. The cursor
894 * may lie left of, at, or to the right of the column position.
900 protected int findPosition(final int col, SequenceCursor curs)
902 if (!isValidCursor(curs))
905 * wrong or invalidated cursor, compute de novo
907 return findPosition(col - 1);// ugh back to base 0
910 if (curs.columnPosition == col)
912 cursor = curs; // in case this method becomes public
913 return curs.residuePosition; // easy case :-)
916 if (curs.lastColumnPosition > 0 && curs.lastColumnPosition < col)
919 * sequence lies entirely to the left of col
920 * - return last residue + 1
925 if (curs.firstColumnPosition > 0 && curs.firstColumnPosition > col)
928 * sequence lies entirely to the right of col
929 * - return first residue
934 // todo could choose closest to col out of column,
935 // firstColumnPosition, lastColumnPosition as a start point
938 * move left or right to find pos from cursor position
940 int firstResidueColumn = curs.firstColumnPosition;
941 int column = curs.columnPosition - 1; // to base 0
942 int newPos = curs.residuePosition;
943 int delta = curs.columnPosition > col ? -1 : 1;
944 boolean gapped = false;
945 int lastFoundPosition = curs.residuePosition;
946 int lastFoundPositionColumn = curs.columnPosition;
948 while (column != col - 1)
950 column += delta; // shift one column left or right
951 if (column < 0 || column == sequence.length)
955 gapped = Comparison.isGap(sequence[column]);
959 lastFoundPosition = newPos;
960 lastFoundPositionColumn = column + 1;
961 if (lastFoundPosition == this.start)
963 firstResidueColumn = column + 1;
968 if (cursor == null || lastFoundPosition != cursor.residuePosition)
970 updateCursor(lastFoundPosition, lastFoundPositionColumn,
975 * hack to give position to the right if on a gap
976 * or beyond the length of the sequence (see JAL-2562)
978 if (delta > 0 && (gapped || column >= sequence.length))
990 public Range findPositions(int fromColumn, int toColumn)
992 if (toColumn < fromColumn || fromColumn < 1)
998 * find the first non-gapped position, if any
1000 int firstPosition = 0;
1001 int col = fromColumn - 1;
1002 int length = sequence.length;
1003 while (col < length && col < toColumn)
1005 if (!Comparison.isGap(sequence[col]))
1007 firstPosition = findPosition(col++);
1013 if (firstPosition == 0)
1019 * find the last non-gapped position
1021 int lastPosition = firstPosition;
1022 while (col < length && col < toColumn)
1024 if (!Comparison.isGap(sequence[col++]))
1030 return new Range(firstPosition, lastPosition);
1034 * Returns an int array where indices correspond to each residue in the
1035 * sequence and the element value gives its position in the alignment
1037 * @return int[SequenceI.getEnd()-SequenceI.getStart()+1] or null if no
1038 * residues in SequenceI object
1041 public int[] gapMap()
1043 String seq = jalview.analysis.AlignSeq.extractGaps(
1044 jalview.util.Comparison.GapChars, new String(sequence));
1045 int[] map = new int[seq.length()];
1049 while (j < sequence.length)
1051 if (!jalview.util.Comparison.isGap(sequence[j]))
1063 public int[] findPositionMap()
1065 int map[] = new int[sequence.length];
1068 int seqlen = sequence.length;
1069 while ((j < seqlen))
1072 if (!jalview.util.Comparison.isGap(sequence[j]))
1083 public List<int[]> getInsertions()
1085 ArrayList<int[]> map = new ArrayList<int[]>();
1086 int lastj = -1, j = 0;
1088 int seqlen = sequence.length;
1089 while ((j < seqlen))
1091 if (jalview.util.Comparison.isGap(sequence[j]))
1102 map.add(new int[] { lastj, j - 1 });
1110 map.add(new int[] { lastj, j - 1 });
1117 public BitSet getInsertionsAsBits()
1119 BitSet map = new BitSet();
1120 int lastj = -1, j = 0;
1122 int seqlen = sequence.length;
1123 while ((j < seqlen))
1125 if (jalview.util.Comparison.isGap(sequence[j]))
1151 public void deleteChars(int i, int j)
1153 int newstart = start, newend = end;
1154 if (i >= sequence.length || i < 0)
1159 char[] tmp = StringUtils.deleteChars(sequence, i, j);
1160 boolean createNewDs = false;
1161 // TODO: take a (second look) at the dataset creation validation method for
1162 // the very large sequence case
1163 int eindex = -1, sindex = -1;
1164 boolean ecalc = false, scalc = false;
1165 for (int s = i; s < j; s++)
1167 if (jalview.schemes.ResidueProperties.aaIndex[sequence[s]] != 23)
1177 sindex = findIndex(start) - 1;
1182 // delete characters including start of sequence
1183 newstart = findPosition(j);
1184 break; // don't need to search for any more residue characters.
1188 // delete characters after start.
1191 eindex = findIndex(end) - 1;
1196 // delete characters at end of sequence
1197 newend = findPosition(i - 1);
1198 break; // don't need to search for any more residue characters.
1203 newend--; // decrease end position by one for the deleted residue
1204 // and search further
1210 // deletion occured in the middle of the sequence
1211 if (createNewDs && this.datasetSequence != null)
1213 // construct a new sequence
1214 Sequence ds = new Sequence(datasetSequence);
1215 // TODO: remove any non-inheritable properties ?
1216 // TODO: create a sequence mapping (since there is a relation here ?)
1217 ds.deleteChars(i, j);
1218 datasetSequence = ds;
1227 public void insertCharAt(int i, int length, char c)
1229 char[] tmp = new char[sequence.length + length];
1231 if (i >= sequence.length)
1233 System.arraycopy(sequence, 0, tmp, 0, sequence.length);
1234 i = sequence.length;
1238 System.arraycopy(sequence, 0, tmp, 0, i);
1248 if (i < sequence.length)
1250 System.arraycopy(sequence, i, tmp, index, sequence.length - i);
1258 public void insertCharAt(int i, char c)
1260 insertCharAt(i, 1, c);
1264 public String getVamsasId()
1270 public void setVamsasId(String id)
1276 public void setDBRefs(DBRefEntry[] dbref)
1278 if (dbrefs == null && datasetSequence != null
1279 && this != datasetSequence)
1281 datasetSequence.setDBRefs(dbref);
1287 DBRefUtils.ensurePrimaries(this);
1292 public DBRefEntry[] getDBRefs()
1294 if (dbrefs == null && datasetSequence != null
1295 && this != datasetSequence)
1297 return datasetSequence.getDBRefs();
1303 public void addDBRef(DBRefEntry entry)
1305 if (datasetSequence != null)
1307 datasetSequence.addDBRef(entry);
1313 dbrefs = new DBRefEntry[0];
1316 for (DBRefEntryI dbr : dbrefs)
1318 if (dbr.updateFrom(entry))
1321 * found a dbref that either matched, or could be
1322 * updated from, the new entry - no need to add it
1329 * extend the array to make room for one more
1331 // TODO use an ArrayList instead
1332 int j = dbrefs.length;
1333 DBRefEntry[] temp = new DBRefEntry[j + 1];
1334 System.arraycopy(dbrefs, 0, temp, 0, j);
1335 temp[temp.length - 1] = entry;
1339 DBRefUtils.ensurePrimaries(this);
1343 public void setDatasetSequence(SequenceI seq)
1347 throw new IllegalArgumentException(
1348 "Implementation Error: self reference passed to SequenceI.setDatasetSequence");
1350 if (seq != null && seq.getDatasetSequence() != null)
1352 throw new IllegalArgumentException(
1353 "Implementation error: cascading dataset sequences are not allowed.");
1355 datasetSequence = seq;
1359 public SequenceI getDatasetSequence()
1361 return datasetSequence;
1365 public AlignmentAnnotation[] getAnnotation()
1367 return annotation == null ? null
1369 .toArray(new AlignmentAnnotation[annotation.size()]);
1373 public boolean hasAnnotation(AlignmentAnnotation ann)
1375 return annotation == null ? false : annotation.contains(ann);
1379 public void addAlignmentAnnotation(AlignmentAnnotation annotation)
1381 if (this.annotation == null)
1383 this.annotation = new Vector<AlignmentAnnotation>();
1385 if (!this.annotation.contains(annotation))
1387 this.annotation.addElement(annotation);
1389 annotation.setSequenceRef(this);
1393 public void removeAlignmentAnnotation(AlignmentAnnotation annotation)
1395 if (this.annotation != null)
1397 this.annotation.removeElement(annotation);
1398 if (this.annotation.size() == 0)
1400 this.annotation = null;
1406 * test if this is a valid candidate for another sequence's dataset sequence.
1409 private boolean isValidDatasetSequence()
1411 if (datasetSequence != null)
1415 for (int i = 0; i < sequence.length; i++)
1417 if (jalview.util.Comparison.isGap(sequence[i]))
1426 public SequenceI deriveSequence()
1428 Sequence seq = null;
1429 if (datasetSequence == null)
1431 if (isValidDatasetSequence())
1433 // Use this as dataset sequence
1434 seq = new Sequence(getName(), "", 1, -1);
1435 seq.setDatasetSequence(this);
1436 seq.initSeqFrom(this, getAnnotation());
1441 // Create a new, valid dataset sequence
1442 createDatasetSequence();
1445 return new Sequence(this);
1448 private boolean _isNa;
1450 private int _seqhash = 0;
1453 * Answers false if the sequence is more than 85% nucleotide (ACGTU), else
1457 public boolean isProtein()
1459 if (datasetSequence != null)
1461 return datasetSequence.isProtein();
1463 if (_seqhash != sequence.hashCode())
1465 _seqhash = sequence.hashCode();
1466 _isNa = Comparison.isNucleotide(this);
1474 * @see jalview.datamodel.SequenceI#createDatasetSequence()
1477 public SequenceI createDatasetSequence()
1479 if (datasetSequence == null)
1481 Sequence dsseq = new Sequence(getName(),
1482 AlignSeq.extractGaps(jalview.util.Comparison.GapChars,
1483 getSequenceAsString()),
1484 getStart(), getEnd());
1486 datasetSequence = dsseq;
1488 dsseq.setDescription(description);
1489 // move features and database references onto dataset sequence
1490 dsseq.sequenceFeatureStore = sequenceFeatureStore;
1491 sequenceFeatureStore = null;
1492 dsseq.dbrefs = dbrefs;
1494 // TODO: search and replace any references to this sequence with
1495 // references to the dataset sequence in Mappings on dbref
1496 dsseq.pdbIds = pdbIds;
1498 datasetSequence.updatePDBIds();
1499 if (annotation != null)
1501 // annotation is cloned rather than moved, to preserve what's currently
1503 for (AlignmentAnnotation aa : annotation)
1505 AlignmentAnnotation _aa = new AlignmentAnnotation(aa);
1506 _aa.sequenceRef = datasetSequence;
1507 _aa.adjustForAlignment(); // uses annotation's own record of
1508 // sequence-column mapping
1509 datasetSequence.addAlignmentAnnotation(_aa);
1513 return datasetSequence;
1520 * jalview.datamodel.SequenceI#setAlignmentAnnotation(AlignmmentAnnotation[]
1524 public void setAlignmentAnnotation(AlignmentAnnotation[] annotations)
1526 if (annotation != null)
1528 annotation.removeAllElements();
1530 if (annotations != null)
1532 for (int i = 0; i < annotations.length; i++)
1534 if (annotations[i] != null)
1536 addAlignmentAnnotation(annotations[i]);
1543 public AlignmentAnnotation[] getAnnotation(String label)
1545 if (annotation == null || annotation.size() == 0)
1550 Vector<AlignmentAnnotation> subset = new Vector<AlignmentAnnotation>();
1551 Enumeration<AlignmentAnnotation> e = annotation.elements();
1552 while (e.hasMoreElements())
1554 AlignmentAnnotation ann = e.nextElement();
1555 if (ann.label != null && ann.label.equals(label))
1557 subset.addElement(ann);
1560 if (subset.size() == 0)
1564 AlignmentAnnotation[] anns = new AlignmentAnnotation[subset.size()];
1566 e = subset.elements();
1567 while (e.hasMoreElements())
1569 anns[i++] = e.nextElement();
1571 subset.removeAllElements();
1576 public boolean updatePDBIds()
1578 if (datasetSequence != null)
1580 // TODO: could merge DBRefs
1581 return datasetSequence.updatePDBIds();
1583 if (dbrefs == null || dbrefs.length == 0)
1587 boolean added = false;
1588 for (DBRefEntry dbr : dbrefs)
1590 if (DBRefSource.PDB.equals(dbr.getSource()))
1593 * 'Add' any PDB dbrefs as a PDBEntry - add is only performed if the
1594 * PDB id is not already present in a 'matching' PDBEntry
1595 * Constructor parses out a chain code if appended to the accession id
1596 * (a fudge used to 'store' the chain code in the DBRef)
1598 PDBEntry pdbe = new PDBEntry(dbr);
1599 added |= addPDBId(pdbe);
1606 public void transferAnnotation(SequenceI entry, Mapping mp)
1608 if (datasetSequence != null)
1610 datasetSequence.transferAnnotation(entry, mp);
1613 if (entry.getDatasetSequence() != null)
1615 transferAnnotation(entry.getDatasetSequence(), mp);
1618 // transfer any new features from entry onto sequence
1619 if (entry.getSequenceFeatures() != null)
1622 List<SequenceFeature> sfs = entry.getSequenceFeatures();
1623 for (SequenceFeature feature : sfs)
1625 SequenceFeature sf[] = (mp != null) ? mp.locateFeature(feature)
1626 : new SequenceFeature[] { new SequenceFeature(feature) };
1629 for (int sfi = 0; sfi < sf.length; sfi++)
1631 addSequenceFeature(sf[sfi]);
1637 // transfer PDB entries
1638 if (entry.getAllPDBEntries() != null)
1640 Enumeration<PDBEntry> e = entry.getAllPDBEntries().elements();
1641 while (e.hasMoreElements())
1643 PDBEntry pdb = e.nextElement();
1647 // transfer database references
1648 DBRefEntry[] entryRefs = entry.getDBRefs();
1649 if (entryRefs != null)
1651 for (int r = 0; r < entryRefs.length; r++)
1653 DBRefEntry newref = new DBRefEntry(entryRefs[r]);
1654 if (newref.getMap() != null && mp != null)
1656 // remap ref using our local mapping
1658 // we also assume all version string setting is done by dbSourceProxy
1660 * if (!newref.getSource().equalsIgnoreCase(dbSource)) {
1661 * newref.setSource(dbSource); }
1669 * @return The index (zero-based) on this sequence in the MSA. It returns
1670 * {@code -1} if this information is not available.
1673 public int getIndex()
1679 * Defines the position of this sequence in the MSA. Use the value {@code -1}
1680 * if this information is undefined.
1683 * position for this sequence. This value is zero-based (zero for
1684 * this first sequence)
1687 public void setIndex(int value)
1693 public void setRNA(RNA r)
1705 public List<AlignmentAnnotation> getAlignmentAnnotations(String calcId,
1708 List<AlignmentAnnotation> result = new ArrayList<AlignmentAnnotation>();
1709 if (this.annotation != null)
1711 for (AlignmentAnnotation ann : annotation)
1713 if (ann.calcId != null && ann.calcId.equals(calcId)
1714 && ann.label != null && ann.label.equals(label))
1724 public String toString()
1726 return getDisplayId(false);
1730 public PDBEntry getPDBEntry(String pdbIdStr)
1732 if (getDatasetSequence() != null)
1734 return getDatasetSequence().getPDBEntry(pdbIdStr);
1740 List<PDBEntry> entries = getAllPDBEntries();
1741 for (PDBEntry entry : entries)
1743 if (entry.getId().equalsIgnoreCase(pdbIdStr))
1752 public List<DBRefEntry> getPrimaryDBRefs()
1754 if (datasetSequence != null)
1756 return datasetSequence.getPrimaryDBRefs();
1758 if (dbrefs == null || dbrefs.length == 0)
1760 return Collections.emptyList();
1762 synchronized (dbrefs)
1764 List<DBRefEntry> primaries = new ArrayList<DBRefEntry>();
1765 DBRefEntry[] tmp = new DBRefEntry[1];
1766 for (DBRefEntry ref : dbrefs)
1768 if (!ref.isPrimaryCandidate())
1774 MapList mp = ref.getMap().getMap();
1775 if (mp.getFromLowest() > start || mp.getFromHighest() < end)
1777 // map only involves a subsequence, so cannot be primary
1781 // whilst it looks like it is a primary ref, we also sanity check type
1782 if (DBRefUtils.getCanonicalName(DBRefSource.PDB)
1783 .equals(DBRefUtils.getCanonicalName(ref.getSource())))
1785 // PDB dbrefs imply there should be a PDBEntry associated
1786 // TODO: tighten PDB dbrefs
1787 // formally imply Jalview has actually downloaded and
1788 // parsed the pdb file. That means there should be a cached file
1789 // handle on the PDBEntry, and a real mapping between sequence and
1790 // extracted sequence from PDB file
1791 PDBEntry pdbentry = getPDBEntry(ref.getAccessionId());
1792 if (pdbentry != null && pdbentry.getFile() != null)
1798 // check standard protein or dna sources
1800 DBRefEntry[] res = DBRefUtils.selectDbRefs(!isProtein(), tmp);
1801 if (res != null && res[0] == tmp[0])
1815 public List<SequenceFeature> findFeatures(int fromColumn, int toColumn,
1818 int startPos = findPosition(fromColumn - 1); // convert base 1 to base 0
1819 int endPos = fromColumn == toColumn ? startPos
1820 : findPosition(toColumn - 1);
1822 List<SequenceFeature> result = getFeatures().findFeatures(startPos,
1826 * if end column is gapped, endPos may be to the right,
1827 * and we may have included adjacent or enclosing features;
1828 * remove any that are not enclosing, non-contact features
1830 if (endPos > this.end || Comparison.isGap(sequence[toColumn - 1]))
1832 ListIterator<SequenceFeature> it = result.listIterator();
1833 while (it.hasNext())
1835 SequenceFeature sf = it.next();
1836 int sfBegin = sf.getBegin();
1837 int sfEnd = sf.getEnd();
1838 int featureStartColumn = findIndex(sfBegin);
1839 if (featureStartColumn > toColumn)
1843 else if (featureStartColumn < fromColumn)
1845 int featureEndColumn = sfEnd == sfBegin ? featureStartColumn
1847 if (featureEndColumn < fromColumn)
1851 else if (featureEndColumn > toColumn && sf.isContactFeature())
1854 * remove an enclosing feature if it is a contact feature
1866 * Invalidates any stale cursors (forcing recalculation) by incrementing the
1867 * token that has to match the one presented by the cursor
1870 public void sequenceChanged()
1879 public int replace(char c1, char c2)
1886 synchronized (sequence)
1888 for (int c = 0; c < sequence.length; c++)
1890 if (sequence[c] == c1)