JAL-2674 Rewrote propagateInsertions
[jalview.git] / src / jalview / datamodel / Sequence.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.datamodel;
22
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;
31
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;
40
41 import com.stevesoft.pat.Regex;
42
43 import fr.orsay.lri.varna.models.rna.RNA;
44
45 /**
46  * 
47  * Implements the SequenceI interface for a char[] based sequence object.
48  * 
49  * @author $author$
50  * @version $Revision$
51  */
52 public class Sequence extends ASequence implements SequenceI
53 {
54   private static final Regex limitrx = new Regex(
55           "[/][0-9]{1,}[-][0-9]{1,}$");
56
57   private static final Regex endrx = new Regex("[0-9]{1,}$");
58
59   SequenceI datasetSequence;
60
61   String name;
62
63   private char[] sequence;
64
65   String description;
66
67   int start;
68
69   int end;
70
71   Vector<PDBEntry> pdbIds;
72
73   String vamsasId;
74
75   DBRefEntry[] dbrefs;
76
77   RNA rna;
78
79   /**
80    * This annotation is displayed below the alignment but the positions are tied
81    * to the residues of this sequence
82    *
83    * TODO: change to List<>
84    */
85   Vector<AlignmentAnnotation> annotation;
86
87   /**
88    * The index of the sequence in a MSA
89    */
90   int index = -1;
91
92   private SequenceFeatures sequenceFeatureStore;
93
94   /*
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
98    * large sequences.
99    */
100   private SequenceCursor cursor;
101
102   /*
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. 
106    */
107   private int changeCount;
108
109   /**
110    * Creates a new Sequence object.
111    * 
112    * @param name
113    *          display name string
114    * @param sequence
115    *          string to form a possibly gapped sequence out of
116    * @param start
117    *          first position of non-gap residue in the sequence
118    * @param end
119    *          last position of ungapped residues (nearly always only used for
120    *          display purposes)
121    */
122   public Sequence(String name, String sequence, int start, int end)
123   {
124     this();
125     initSeqAndName(name, sequence.toCharArray(), start, end);
126   }
127
128   public Sequence(String name, char[] sequence, int start, int end)
129   {
130     this();
131     initSeqAndName(name, sequence, start, end);
132   }
133
134   /**
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
137    * 
138    * @param name2
139    * @param sequence2
140    * @param start2
141    * @param end2
142    */
143   protected void initSeqAndName(String name2, char[] sequence2, int start2,
144           int end2)
145   {
146     this.name = name2;
147     this.sequence = sequence2;
148     this.start = start2;
149     this.end = end2;
150     parseId();
151     checkValidRange();
152   }
153
154   void parseId()
155   {
156     if (name == null)
157     {
158       System.err.println(
159               "POSSIBLE IMPLEMENTATION ERROR: null sequence name passed to constructor.");
160       name = "";
161     }
162     // Does sequence have the /start-end signature?
163     if (limitrx.search(name))
164     {
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()));
170     }
171   }
172
173   void checkValidRange()
174   {
175     // Note: JAL-774 :
176     // http://issues.jalview.org/browse/JAL-774?focusedCommentId=11239&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-11239
177     {
178       int endRes = 0;
179       for (int j = 0; j < sequence.length; j++)
180       {
181         if (!jalview.util.Comparison.isGap(sequence[j]))
182         {
183           endRes++;
184         }
185       }
186       if (endRes > 0)
187       {
188         endRes += start - 1;
189       }
190
191       if (end < endRes)
192       {
193         end = endRes;
194       }
195     }
196
197   }
198
199   /**
200    * default constructor
201    */
202   private Sequence()
203   {
204     sequenceFeatureStore = new SequenceFeatures();
205   }
206
207   /**
208    * Creates a new Sequence object.
209    * 
210    * @param name
211    *          DOCUMENT ME!
212    * @param sequence
213    *          DOCUMENT ME!
214    */
215   public Sequence(String name, String sequence)
216   {
217     this(name, sequence, 1, -1);
218   }
219
220   /**
221    * Creates a new Sequence object with new AlignmentAnnotations but inherits
222    * any existing dataset sequence reference. If non exists, everything is
223    * copied.
224    * 
225    * @param seq
226    *          if seq is a dataset sequence, behaves like a plain old copy
227    *          constructor
228    */
229   public Sequence(SequenceI seq)
230   {
231     this(seq, seq.getAnnotation());
232   }
233
234   /**
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.
238    * 
239    * @param seq
240    *          the sequence to be copied
241    * @param alAnnotation
242    *          an array of annotation including some associated with seq
243    */
244   public Sequence(SequenceI seq, AlignmentAnnotation[] alAnnotation)
245   {
246     this();
247     initSeqFrom(seq, alAnnotation);
248   }
249
250   /**
251    * does the heavy lifting when cloning a dataset sequence, or coping data from
252    * dataset to a new derived sequence.
253    * 
254    * @param seq
255    *          - source of attributes.
256    * @param alAnnotation
257    *          - alignment annotation present on seq that should be copied onto
258    *          this sequence
259    */
260   protected void initSeqFrom(SequenceI seq,
261           AlignmentAnnotation[] alAnnotation)
262   {
263     char[] oseq = seq.getSequence(); // returns a copy of the array
264     initSeqAndName(seq.getName(), oseq, seq.getStart(), seq.getEnd());
265
266     description = seq.getDescription();
267     if (seq != datasetSequence)
268     {
269       setDatasetSequence(seq.getDatasetSequence());
270     }
271     
272     /*
273      * only copy DBRefs and seqfeatures if we really are a dataset sequence
274      */
275     if (datasetSequence == null)
276     {
277       if (seq.getDBRefs() != null)
278       {
279         DBRefEntry[] dbr = seq.getDBRefs();
280         for (int i = 0; i < dbr.length; i++)
281         {
282           addDBRef(new DBRefEntry(dbr[i]));
283         }
284       }
285
286       /*
287        * make copies of any sequence features
288        */
289       for (SequenceFeature sf : seq.getSequenceFeatures())
290       {
291         addSequenceFeature(new SequenceFeature(sf));
292       }
293     }
294
295     if (seq.getAnnotation() != null)
296     {
297       AlignmentAnnotation[] sqann = seq.getAnnotation();
298       for (int i = 0; i < sqann.length; i++)
299       {
300         if (sqann[i] == null)
301         {
302           continue;
303         }
304         boolean found = (alAnnotation == null);
305         if (!found)
306         {
307           for (int apos = 0; !found && apos < alAnnotation.length; apos++)
308           {
309             found = (alAnnotation[apos] == sqann[i]);
310           }
311         }
312         if (found)
313         {
314           // only copy the given annotation
315           AlignmentAnnotation newann = new AlignmentAnnotation(sqann[i]);
316           addAlignmentAnnotation(newann);
317         }
318       }
319     }
320     if (seq.getAllPDBEntries() != null)
321     {
322       Vector<PDBEntry> ids = seq.getAllPDBEntries();
323       for (PDBEntry pdb : ids)
324       {
325         this.addPDBId(new PDBEntry(pdb));
326       }
327     }
328   }
329
330   @Override
331   public void setSequenceFeatures(List<SequenceFeature> features)
332   {
333     if (datasetSequence != null)
334     {
335       datasetSequence.setSequenceFeatures(features);
336       return;
337     }
338     sequenceFeatureStore = new SequenceFeatures(features);
339   }
340
341   @Override
342   public synchronized boolean addSequenceFeature(SequenceFeature sf)
343   {
344     if (sf.getType() == null)
345     {
346       System.err.println("SequenceFeature type may not be null: "
347               + sf.toString());
348       return false;
349     }
350
351     if (datasetSequence != null)
352     {
353       return datasetSequence.addSequenceFeature(sf);
354     }
355
356     return sequenceFeatureStore.add(sf);
357   }
358
359   @Override
360   public void deleteFeature(SequenceFeature sf)
361   {
362     if (datasetSequence != null)
363     {
364       datasetSequence.deleteFeature(sf);
365     }
366     else
367     {
368       sequenceFeatureStore.delete(sf);
369     }
370   }
371
372   /**
373    * {@inheritDoc}
374    * 
375    * @return
376    */
377   @Override
378   public List<SequenceFeature> getSequenceFeatures()
379   {
380     if (datasetSequence != null)
381     {
382       return datasetSequence.getSequenceFeatures();
383     }
384     return sequenceFeatureStore.getAllFeatures();
385   }
386
387   @Override
388   public SequenceFeaturesI getFeatures()
389   {
390     return datasetSequence != null ? datasetSequence.getFeatures()
391             : sequenceFeatureStore;
392   }
393
394   @Override
395   public boolean addPDBId(PDBEntry entry)
396   {
397     if (pdbIds == null)
398     {
399       pdbIds = new Vector<>();
400       pdbIds.add(entry);
401       return true;
402     }
403
404     for (PDBEntry pdbe : pdbIds)
405     {
406       if (pdbe.updateFrom(entry))
407       {
408         return false;
409       }
410     }
411     pdbIds.addElement(entry);
412     return true;
413   }
414
415   /**
416    * DOCUMENT ME!
417    * 
418    * @param id
419    *          DOCUMENT ME!
420    */
421   @Override
422   public void setPDBId(Vector<PDBEntry> id)
423   {
424     pdbIds = id;
425   }
426
427   /**
428    * DOCUMENT ME!
429    * 
430    * @return DOCUMENT ME!
431    */
432   @Override
433   public Vector<PDBEntry> getAllPDBEntries()
434   {
435     return pdbIds == null ? new Vector<PDBEntry>() : pdbIds;
436   }
437
438   /**
439    * DOCUMENT ME!
440    * 
441    * @return DOCUMENT ME!
442    */
443   @Override
444   public String getDisplayId(boolean jvsuffix)
445   {
446     StringBuffer result = new StringBuffer(name);
447     if (jvsuffix)
448     {
449       result.append("/" + start + "-" + end);
450     }
451
452     return result.toString();
453   }
454
455   /**
456    * DOCUMENT ME!
457    * 
458    * @param name
459    *          DOCUMENT ME!
460    */
461   @Override
462   public void setName(String name)
463   {
464     this.name = name;
465     this.parseId();
466   }
467
468   /**
469    * DOCUMENT ME!
470    * 
471    * @return DOCUMENT ME!
472    */
473   @Override
474   public String getName()
475   {
476     return this.name;
477   }
478
479   /**
480    * DOCUMENT ME!
481    * 
482    * @param start
483    *          DOCUMENT ME!
484    */
485   @Override
486   public void setStart(int start)
487   {
488     this.start = start;
489   }
490
491   /**
492    * DOCUMENT ME!
493    * 
494    * @return DOCUMENT ME!
495    */
496   @Override
497   public int getStart()
498   {
499     return this.start;
500   }
501
502   /**
503    * DOCUMENT ME!
504    * 
505    * @param end
506    *          DOCUMENT ME!
507    */
508   @Override
509   public void setEnd(int end)
510   {
511     this.end = end;
512   }
513
514   /**
515    * DOCUMENT ME!
516    * 
517    * @return DOCUMENT ME!
518    */
519   @Override
520   public int getEnd()
521   {
522     return this.end;
523   }
524
525   /**
526    * DOCUMENT ME!
527    * 
528    * @return DOCUMENT ME!
529    */
530   @Override
531   public int getLength()
532   {
533     return this.sequence.length;
534   }
535
536   /**
537    * DOCUMENT ME!
538    * 
539    * @param seq
540    *          DOCUMENT ME!
541    */
542   @Override
543   public void setSequence(String seq)
544   {
545     this.sequence = seq.toCharArray();
546     checkValidRange();
547     sequenceChanged();
548   }
549
550   @Override
551   public String getSequenceAsString()
552   {
553     return new String(sequence);
554   }
555
556   @Override
557   public String getSequenceAsString(int start, int end)
558   {
559     return new String(getSequence(start, end));
560   }
561
562   @Override
563   public char[] getSequence()
564   {
565     // return sequence;
566     return sequence == null ? null : Arrays.copyOf(sequence,
567             sequence.length);
568   }
569
570   /*
571    * (non-Javadoc)
572    * 
573    * @see jalview.datamodel.SequenceI#getSequence(int, int)
574    */
575   @Override
576   public char[] getSequence(int start, int end)
577   {
578     if (start < 0)
579     {
580       start = 0;
581     }
582     // JBPNote - left to user to pad the result here (TODO:Decide on this
583     // policy)
584     if (start >= sequence.length)
585     {
586       return new char[0];
587     }
588
589     if (end >= sequence.length)
590     {
591       end = sequence.length;
592     }
593
594     char[] reply = new char[end - start];
595     System.arraycopy(sequence, start, reply, 0, end - start);
596
597     return reply;
598   }
599
600   @Override
601   public SequenceI getSubSequence(int start, int end)
602   {
603     if (start < 0)
604     {
605       start = 0;
606     }
607     char[] seq = getSequence(start, end);
608     if (seq.length == 0)
609     {
610       return null;
611     }
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)
618     {
619       nseq.setDatasetSequence(datasetSequence);
620     }
621     else
622     {
623       nseq.setDatasetSequence(this);
624     }
625     return nseq;
626   }
627
628   /**
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
631    * 
632    * @return
633    */
634   @Override
635   public char getCharAt(int i)
636   {
637     if (i >= 0 && i < sequence.length)
638     {
639       return sequence[i];
640     }
641     else
642     {
643       return ' ';
644     }
645   }
646
647   /**
648    * DOCUMENT ME!
649    * 
650    * @param desc
651    *          DOCUMENT ME!
652    */
653   @Override
654   public void setDescription(String desc)
655   {
656     this.description = desc;
657   }
658
659   /**
660    * DOCUMENT ME!
661    * 
662    * @return DOCUMENT ME!
663    */
664   @Override
665   public String getDescription()
666   {
667     return this.description;
668   }
669
670   /**
671    * {@inheritDoc}
672    */
673   @Override
674   public int findIndex(int pos)
675   {
676     /*
677      * use a valid, hopefully nearby, cursor if available
678      */
679     if (isValidCursor(cursor))
680     {
681       return findIndex(pos, cursor);
682     }
683
684     int j = start;
685     int i = 0;
686     int startColumn = 0;
687
688     /*
689      * traverse sequence from the start counting gaps; make a note of
690      * the column of the first residue to save in the cursor
691      */
692     while ((i < sequence.length) && (j <= end) && (j <= pos))
693     {
694       if (!Comparison.isGap(sequence[i]))
695       {
696         if (j == start)
697         {
698           startColumn = i;
699         }
700         j++;
701       }
702       i++;
703     }
704
705     if (j == end && j < pos)
706     {
707       return end + 1;
708     }
709
710     updateCursor(pos, i, startColumn);
711     return i;
712   }
713
714   /**
715    * Updates the cursor to the latest found residue and column position
716    * 
717    * @param residuePos
718    *          (start..)
719    * @param column
720    *          (1..)
721    * @param startColumn
722    *          column position of the first sequence residue
723    */
724   protected void updateCursor(int residuePos, int column, int startColumn)
725   {
726     /*
727      * preserve end residue column provided cursor was valid
728      */
729     int endColumn = isValidCursor(cursor) ? cursor.lastColumnPosition : 0;
730     if (residuePos == this.end)
731     {
732       endColumn = column;
733     }
734
735     cursor = new SequenceCursor(this, residuePos, column, startColumn,
736             endColumn, this.changeCount);
737   }
738
739   /**
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.
743    * 
744    * @param pos
745    * @param curs
746    * @return
747    */
748   protected int findIndex(int pos, SequenceCursor curs)
749   {
750     if (!isValidCursor(curs))
751     {
752       /*
753        * wrong or invalidated cursor, compute de novo
754        */
755       return findIndex(pos);
756     }
757
758     if (curs.residuePosition == pos)
759     {
760       return curs.columnPosition;
761     }
762
763     /*
764      * move left or right to find pos from hint.position
765      */
766     int col = curs.columnPosition - 1; // convert from base 1 to 0-based array
767                                        // index
768     int newPos = curs.residuePosition;
769     int delta = newPos > pos ? -1 : 1;
770
771     while (newPos != pos)
772     {
773       col += delta; // shift one column left or right
774       if (col < 0 || col == sequence.length)
775       {
776         break;
777       }
778       if (!Comparison.isGap(sequence[col]))
779       {
780         newPos += delta;
781       }
782     }
783
784     col++; // convert back to base 1
785     updateCursor(pos, col, curs.firstColumnPosition);
786
787     return col;
788   }
789
790   /**
791    * {@inheritDoc}
792    */
793   @Override
794   public int findPosition(final int column)
795   {
796     /*
797      * use a valid, hopefully nearby, cursor if available
798      */
799     if (isValidCursor(cursor))
800     {
801       return findPosition(column + 1, cursor);
802     }
803     
804     // TODO recode this more naturally i.e. count residues only
805     // as they are found, not 'in anticipation'
806
807     /*
808      * traverse the sequence counting gaps; note the column position
809      * of the first residue, to save in the cursor
810      */
811     int firstResidueColumn = 0;
812     int lastPosFound = 0;
813     int lastPosFoundColumn = 0;
814     int seqlen = sequence.length;
815
816     if (seqlen > 0 && !Comparison.isGap(sequence[0]))
817     {
818       lastPosFound = start;
819       lastPosFoundColumn = 0;
820     }
821
822     int j = 0;
823     int pos = start;
824
825     while (j < column && j < seqlen)
826     {
827       if (!Comparison.isGap(sequence[j]))
828       {
829         lastPosFound = pos;
830         lastPosFoundColumn = j;
831         if (pos == this.start)
832         {
833           firstResidueColumn = j;
834         }
835         pos++;
836       }
837       j++;
838     }
839     if (j < seqlen && !Comparison.isGap(sequence[j]))
840     {
841       lastPosFound = pos;
842       lastPosFoundColumn = j;
843       if (pos == this.start)
844       {
845         firstResidueColumn = j;
846       }
847     }
848
849     /*
850      * update the cursor to the last residue position found (if any)
851      * (converting column position to base 1)
852      */
853     if (lastPosFound != 0)
854     {
855       updateCursor(lastPosFound, lastPosFoundColumn + 1,
856               firstResidueColumn + 1);
857     }
858
859     return pos;
860   }
861
862   /**
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.
867    * 
868    * @param curs
869    * @return
870    */
871   protected boolean isValidCursor(SequenceCursor curs)
872   {
873     if (curs == null || curs.sequence != this || curs.token != changeCount)
874     {
875       return false;
876     }
877     /*
878      * sanity check against range
879      */
880     if (curs.columnPosition < 0 || curs.columnPosition > sequence.length)
881     {
882       return false;
883     }
884     if (curs.residuePosition < start || curs.residuePosition > end)
885     {
886       return false;
887     }
888     return true;
889   }
890
891   /**
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.
895    * 
896    * @param col
897    * @param curs
898    * @return
899    */
900   protected int findPosition(final int col, SequenceCursor curs)
901   {
902     if (!isValidCursor(curs))
903     {
904       /*
905        * wrong or invalidated cursor, compute de novo
906        */
907       return findPosition(col - 1);// ugh back to base 0
908     }
909
910     if (curs.columnPosition == col)
911     {
912       cursor = curs; // in case this method becomes public
913       return curs.residuePosition; // easy case :-)
914     }
915
916     if (curs.lastColumnPosition > 0 && curs.lastColumnPosition < col)
917     {
918       /*
919        * sequence lies entirely to the left of col
920        * - return last residue + 1
921        */
922       return end + 1;
923     }
924
925     if (curs.firstColumnPosition > 0 && curs.firstColumnPosition > col)
926     {
927       /*
928        * sequence lies entirely to the right of col
929        * - return first residue
930        */
931       return start;
932     }
933
934     // todo could choose closest to col out of column,
935     // firstColumnPosition, lastColumnPosition as a start point
936
937     /*
938      * move left or right to find pos from cursor position
939      */
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;
947
948     while (column != col - 1)
949     {
950       column += delta; // shift one column left or right
951       if (column < 0 || column == sequence.length)
952       {
953         break;
954       }
955       gapped = Comparison.isGap(sequence[column]);
956       if (!gapped)
957       {
958         newPos += delta;
959         lastFoundPosition = newPos;
960         lastFoundPositionColumn = column + 1;
961         if (lastFoundPosition == this.start)
962         {
963           firstResidueColumn = column + 1;
964         }
965       }
966     }
967
968     if (cursor == null || lastFoundPosition != cursor.residuePosition)
969     {
970       updateCursor(lastFoundPosition, lastFoundPositionColumn,
971               firstResidueColumn);
972     }
973
974     /*
975      * hack to give position to the right if on a gap
976      * or beyond the length of the sequence (see JAL-2562)
977      */
978     if (delta > 0 && (gapped || column >= sequence.length))
979     {
980       newPos++;
981     }
982
983     return newPos;
984   }
985
986   /**
987    * {@inheritDoc}
988    */
989   @Override
990   public Range findPositions(int fromColumn, int toColumn)
991   {
992     if (toColumn < fromColumn || fromColumn < 1)
993     {
994       return null;
995     }
996
997     /*
998      * find the first non-gapped position, if any
999      */
1000     int firstPosition = 0;
1001     int col = fromColumn - 1;
1002     int length = sequence.length;
1003     while (col < length && col < toColumn)
1004     {
1005       if (!Comparison.isGap(sequence[col]))
1006       {
1007         firstPosition = findPosition(col++);
1008         break;
1009       }
1010       col++;
1011     }
1012
1013     if (firstPosition == 0)
1014     {
1015       return null;
1016     }
1017
1018     /*
1019      * find the last non-gapped position
1020      */
1021     int lastPosition = firstPosition;
1022     while (col < length && col < toColumn)
1023     {
1024       if (!Comparison.isGap(sequence[col++]))
1025       {
1026         lastPosition++;
1027       }
1028     }
1029
1030     return new Range(firstPosition, lastPosition);
1031   }
1032
1033   /**
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
1036    * 
1037    * @return int[SequenceI.getEnd()-SequenceI.getStart()+1] or null if no
1038    *         residues in SequenceI object
1039    */
1040   @Override
1041   public int[] gapMap()
1042   {
1043     String seq = jalview.analysis.AlignSeq.extractGaps(
1044             jalview.util.Comparison.GapChars, new String(sequence));
1045     int[] map = new int[seq.length()];
1046     int j = 0;
1047     int p = 0;
1048
1049     while (j < sequence.length)
1050     {
1051       if (!jalview.util.Comparison.isGap(sequence[j]))
1052       {
1053         map[p++] = j;
1054       }
1055
1056       j++;
1057     }
1058
1059     return map;
1060   }
1061
1062   /**
1063    * Build a bitset corresponding to sequence gaps
1064    * 
1065    * @return a BitSet where set values correspond to gaps in the sequence
1066    */
1067   @Override
1068   public BitSet gapBitset()
1069   {
1070     BitSet gaps = new BitSet(sequence.length);
1071     int j = 0;
1072     while (j < sequence.length)
1073     {
1074       if (jalview.util.Comparison.isGap(sequence[j]))
1075       {
1076         gaps.set(j);
1077       }
1078       j++;
1079     }
1080     return gaps;
1081   }
1082
1083   @Override
1084   public int[] findPositionMap()
1085   {
1086     int map[] = new int[sequence.length];
1087     int j = 0;
1088     int pos = start;
1089     int seqlen = sequence.length;
1090     while ((j < seqlen))
1091     {
1092       map[j] = pos;
1093       if (!jalview.util.Comparison.isGap(sequence[j]))
1094       {
1095         pos++;
1096       }
1097
1098       j++;
1099     }
1100     return map;
1101   }
1102
1103   @Override
1104   public List<int[]> getInsertions()
1105   {
1106     ArrayList<int[]> map = new ArrayList<>();
1107     int lastj = -1, j = 0;
1108     int pos = start;
1109     int seqlen = sequence.length;
1110     while ((j < seqlen))
1111     {
1112       if (jalview.util.Comparison.isGap(sequence[j]))
1113       {
1114         if (lastj == -1)
1115         {
1116           lastj = j;
1117         }
1118       }
1119       else
1120       {
1121         if (lastj != -1)
1122         {
1123           map.add(new int[] { lastj, j - 1 });
1124           lastj = -1;
1125         }
1126       }
1127       j++;
1128     }
1129     if (lastj != -1)
1130     {
1131       map.add(new int[] { lastj, j - 1 });
1132       lastj = -1;
1133     }
1134     return map;
1135   }
1136
1137   @Override
1138   public BitSet getInsertionsAsBits()
1139   {
1140     BitSet map = new BitSet();
1141     int lastj = -1, j = 0;
1142     int pos = start;
1143     int seqlen = sequence.length;
1144     while ((j < seqlen))
1145     {
1146       if (jalview.util.Comparison.isGap(sequence[j]))
1147       {
1148         if (lastj == -1)
1149         {
1150           lastj = j;
1151         }
1152       }
1153       else
1154       {
1155         if (lastj != -1)
1156         {
1157           map.set(lastj, j);
1158           lastj = -1;
1159         }
1160       }
1161       j++;
1162     }
1163     if (lastj != -1)
1164     {
1165       map.set(lastj, j);
1166       lastj = -1;
1167     }
1168     return map;
1169   }
1170
1171   @Override
1172   public void deleteChars(int i, int j)
1173   {
1174     int newstart = start, newend = end;
1175     if (i >= sequence.length || i < 0)
1176     {
1177       return;
1178     }
1179
1180     char[] tmp = StringUtils.deleteChars(sequence, i, j);
1181     boolean createNewDs = false;
1182     // TODO: take a (second look) at the dataset creation validation method for
1183     // the very large sequence case
1184     int eindex = -1, sindex = -1;
1185     boolean ecalc = false, scalc = false;
1186     for (int s = i; s < j; s++)
1187     {
1188       if (jalview.schemes.ResidueProperties.aaIndex[sequence[s]] != 23)
1189       {
1190         if (createNewDs)
1191         {
1192           newend--;
1193         }
1194         else
1195         {
1196           if (!scalc)
1197           {
1198             sindex = findIndex(start) - 1;
1199             scalc = true;
1200           }
1201           if (sindex == s)
1202           {
1203             // delete characters including start of sequence
1204             newstart = findPosition(j);
1205             break; // don't need to search for any more residue characters.
1206           }
1207           else
1208           {
1209             // delete characters after start.
1210             if (!ecalc)
1211             {
1212               eindex = findIndex(end) - 1;
1213               ecalc = true;
1214             }
1215             if (eindex < j)
1216             {
1217               // delete characters at end of sequence
1218               newend = findPosition(i - 1);
1219               break; // don't need to search for any more residue characters.
1220             }
1221             else
1222             {
1223               createNewDs = true;
1224               newend--; // decrease end position by one for the deleted residue
1225               // and search further
1226             }
1227           }
1228         }
1229       }
1230     }
1231     // deletion occured in the middle of the sequence
1232     if (createNewDs && this.datasetSequence != null)
1233     {
1234       // construct a new sequence
1235       Sequence ds = new Sequence(datasetSequence);
1236       // TODO: remove any non-inheritable properties ?
1237       // TODO: create a sequence mapping (since there is a relation here ?)
1238       ds.deleteChars(i, j);
1239       datasetSequence = ds;
1240     }
1241     start = newstart;
1242     end = newend;
1243     sequence = tmp;
1244     sequenceChanged();
1245   }
1246
1247   @Override
1248   public void insertCharAt(int i, int length, char c)
1249   {
1250     char[] tmp = new char[sequence.length + length];
1251
1252     if (i >= sequence.length)
1253     {
1254       System.arraycopy(sequence, 0, tmp, 0, sequence.length);
1255       i = sequence.length;
1256     }
1257     else
1258     {
1259       System.arraycopy(sequence, 0, tmp, 0, i);
1260     }
1261
1262     int index = i;
1263     while (length > 0)
1264     {
1265       tmp[index++] = c;
1266       length--;
1267     }
1268
1269     if (i < sequence.length)
1270     {
1271       System.arraycopy(sequence, i, tmp, index, sequence.length - i);
1272     }
1273
1274     sequence = tmp;
1275     sequenceChanged();
1276   }
1277
1278   @Override
1279   public void insertCharAt(int i, char c)
1280   {
1281     insertCharAt(i, 1, c);
1282   }
1283
1284   @Override
1285   public String getVamsasId()
1286   {
1287     return vamsasId;
1288   }
1289
1290   @Override
1291   public void setVamsasId(String id)
1292   {
1293     vamsasId = id;
1294   }
1295
1296   @Override
1297   public void setDBRefs(DBRefEntry[] dbref)
1298   {
1299     if (dbrefs == null && datasetSequence != null
1300             && this != datasetSequence)
1301     {
1302       datasetSequence.setDBRefs(dbref);
1303       return;
1304     }
1305     dbrefs = dbref;
1306     if (dbrefs != null)
1307     {
1308       DBRefUtils.ensurePrimaries(this);
1309     }
1310   }
1311
1312   @Override
1313   public DBRefEntry[] getDBRefs()
1314   {
1315     if (dbrefs == null && datasetSequence != null
1316             && this != datasetSequence)
1317     {
1318       return datasetSequence.getDBRefs();
1319     }
1320     return dbrefs;
1321   }
1322
1323   @Override
1324   public void addDBRef(DBRefEntry entry)
1325   {
1326     if (datasetSequence != null)
1327     {
1328       datasetSequence.addDBRef(entry);
1329       return;
1330     }
1331
1332     if (dbrefs == null)
1333     {
1334       dbrefs = new DBRefEntry[0];
1335     }
1336
1337     for (DBRefEntryI dbr : dbrefs)
1338     {
1339       if (dbr.updateFrom(entry))
1340       {
1341         /*
1342          * found a dbref that either matched, or could be
1343          * updated from, the new entry - no need to add it
1344          */
1345         return;
1346       }
1347     }
1348
1349     /*
1350      * extend the array to make room for one more
1351      */
1352     // TODO use an ArrayList instead
1353     int j = dbrefs.length;
1354     DBRefEntry[] temp = new DBRefEntry[j + 1];
1355     System.arraycopy(dbrefs, 0, temp, 0, j);
1356     temp[temp.length - 1] = entry;
1357
1358     dbrefs = temp;
1359
1360     DBRefUtils.ensurePrimaries(this);
1361   }
1362
1363   @Override
1364   public void setDatasetSequence(SequenceI seq)
1365   {
1366     if (seq == this)
1367     {
1368       throw new IllegalArgumentException(
1369               "Implementation Error: self reference passed to SequenceI.setDatasetSequence");
1370     }
1371     if (seq != null && seq.getDatasetSequence() != null)
1372     {
1373       throw new IllegalArgumentException(
1374               "Implementation error: cascading dataset sequences are not allowed.");
1375     }
1376     datasetSequence = seq;
1377   }
1378
1379   @Override
1380   public SequenceI getDatasetSequence()
1381   {
1382     return datasetSequence;
1383   }
1384
1385   @Override
1386   public AlignmentAnnotation[] getAnnotation()
1387   {
1388     return annotation == null ? null
1389             : annotation
1390                     .toArray(new AlignmentAnnotation[annotation.size()]);
1391   }
1392
1393   @Override
1394   public boolean hasAnnotation(AlignmentAnnotation ann)
1395   {
1396     return annotation == null ? false : annotation.contains(ann);
1397   }
1398
1399   @Override
1400   public void addAlignmentAnnotation(AlignmentAnnotation annotation)
1401   {
1402     if (this.annotation == null)
1403     {
1404       this.annotation = new Vector<>();
1405     }
1406     if (!this.annotation.contains(annotation))
1407     {
1408       this.annotation.addElement(annotation);
1409     }
1410     annotation.setSequenceRef(this);
1411   }
1412
1413   @Override
1414   public void removeAlignmentAnnotation(AlignmentAnnotation annotation)
1415   {
1416     if (this.annotation != null)
1417     {
1418       this.annotation.removeElement(annotation);
1419       if (this.annotation.size() == 0)
1420       {
1421         this.annotation = null;
1422       }
1423     }
1424   }
1425
1426   /**
1427    * test if this is a valid candidate for another sequence's dataset sequence.
1428    * 
1429    */
1430   private boolean isValidDatasetSequence()
1431   {
1432     if (datasetSequence != null)
1433     {
1434       return false;
1435     }
1436     for (int i = 0; i < sequence.length; i++)
1437     {
1438       if (jalview.util.Comparison.isGap(sequence[i]))
1439       {
1440         return false;
1441       }
1442     }
1443     return true;
1444   }
1445
1446   @Override
1447   public SequenceI deriveSequence()
1448   {
1449     Sequence seq = null;
1450     if (datasetSequence == null)
1451     {
1452       if (isValidDatasetSequence())
1453       {
1454         // Use this as dataset sequence
1455         seq = new Sequence(getName(), "", 1, -1);
1456         seq.setDatasetSequence(this);
1457         seq.initSeqFrom(this, getAnnotation());
1458         return seq;
1459       }
1460       else
1461       {
1462         // Create a new, valid dataset sequence
1463         createDatasetSequence();
1464       }
1465     }
1466     return new Sequence(this);
1467   }
1468
1469   private boolean _isNa;
1470
1471   private int _seqhash = 0;
1472
1473   /**
1474    * Answers false if the sequence is more than 85% nucleotide (ACGTU), else
1475    * true
1476    */
1477   @Override
1478   public boolean isProtein()
1479   {
1480     if (datasetSequence != null)
1481     {
1482       return datasetSequence.isProtein();
1483     }
1484     if (_seqhash != sequence.hashCode())
1485     {
1486       _seqhash = sequence.hashCode();
1487       _isNa = Comparison.isNucleotide(this);
1488     }
1489     return !_isNa;
1490   };
1491
1492   /*
1493    * (non-Javadoc)
1494    * 
1495    * @see jalview.datamodel.SequenceI#createDatasetSequence()
1496    */
1497   @Override
1498   public SequenceI createDatasetSequence()
1499   {
1500     if (datasetSequence == null)
1501     {
1502       Sequence dsseq = new Sequence(getName(),
1503               AlignSeq.extractGaps(jalview.util.Comparison.GapChars,
1504                       getSequenceAsString()),
1505               getStart(), getEnd());
1506
1507       datasetSequence = dsseq;
1508
1509       dsseq.setDescription(description);
1510       // move features and database references onto dataset sequence
1511       dsseq.sequenceFeatureStore = sequenceFeatureStore;
1512       sequenceFeatureStore = null;
1513       dsseq.dbrefs = dbrefs;
1514       dbrefs = null;
1515       // TODO: search and replace any references to this sequence with
1516       // references to the dataset sequence in Mappings on dbref
1517       dsseq.pdbIds = pdbIds;
1518       pdbIds = null;
1519       datasetSequence.updatePDBIds();
1520       if (annotation != null)
1521       {
1522         // annotation is cloned rather than moved, to preserve what's currently
1523         // on the alignment
1524         for (AlignmentAnnotation aa : annotation)
1525         {
1526           AlignmentAnnotation _aa = new AlignmentAnnotation(aa);
1527           _aa.sequenceRef = datasetSequence;
1528           _aa.adjustForAlignment(); // uses annotation's own record of
1529                                     // sequence-column mapping
1530           datasetSequence.addAlignmentAnnotation(_aa);
1531         }
1532       }
1533     }
1534     return datasetSequence;
1535   }
1536
1537   /*
1538    * (non-Javadoc)
1539    * 
1540    * @see
1541    * jalview.datamodel.SequenceI#setAlignmentAnnotation(AlignmmentAnnotation[]
1542    * annotations)
1543    */
1544   @Override
1545   public void setAlignmentAnnotation(AlignmentAnnotation[] annotations)
1546   {
1547     if (annotation != null)
1548     {
1549       annotation.removeAllElements();
1550     }
1551     if (annotations != null)
1552     {
1553       for (int i = 0; i < annotations.length; i++)
1554       {
1555         if (annotations[i] != null)
1556         {
1557           addAlignmentAnnotation(annotations[i]);
1558         }
1559       }
1560     }
1561   }
1562
1563   @Override
1564   public AlignmentAnnotation[] getAnnotation(String label)
1565   {
1566     if (annotation == null || annotation.size() == 0)
1567     {
1568       return null;
1569     }
1570
1571     Vector<AlignmentAnnotation> subset = new Vector<>();
1572     Enumeration<AlignmentAnnotation> e = annotation.elements();
1573     while (e.hasMoreElements())
1574     {
1575       AlignmentAnnotation ann = e.nextElement();
1576       if (ann.label != null && ann.label.equals(label))
1577       {
1578         subset.addElement(ann);
1579       }
1580     }
1581     if (subset.size() == 0)
1582     {
1583       return null;
1584     }
1585     AlignmentAnnotation[] anns = new AlignmentAnnotation[subset.size()];
1586     int i = 0;
1587     e = subset.elements();
1588     while (e.hasMoreElements())
1589     {
1590       anns[i++] = e.nextElement();
1591     }
1592     subset.removeAllElements();
1593     return anns;
1594   }
1595
1596   @Override
1597   public boolean updatePDBIds()
1598   {
1599     if (datasetSequence != null)
1600     {
1601       // TODO: could merge DBRefs
1602       return datasetSequence.updatePDBIds();
1603     }
1604     if (dbrefs == null || dbrefs.length == 0)
1605     {
1606       return false;
1607     }
1608     boolean added = false;
1609     for (DBRefEntry dbr : dbrefs)
1610     {
1611       if (DBRefSource.PDB.equals(dbr.getSource()))
1612       {
1613         /*
1614          * 'Add' any PDB dbrefs as a PDBEntry - add is only performed if the
1615          * PDB id is not already present in a 'matching' PDBEntry
1616          * Constructor parses out a chain code if appended to the accession id
1617          * (a fudge used to 'store' the chain code in the DBRef)
1618          */
1619         PDBEntry pdbe = new PDBEntry(dbr);
1620         added |= addPDBId(pdbe);
1621       }
1622     }
1623     return added;
1624   }
1625
1626   @Override
1627   public void transferAnnotation(SequenceI entry, Mapping mp)
1628   {
1629     if (datasetSequence != null)
1630     {
1631       datasetSequence.transferAnnotation(entry, mp);
1632       return;
1633     }
1634     if (entry.getDatasetSequence() != null)
1635     {
1636       transferAnnotation(entry.getDatasetSequence(), mp);
1637       return;
1638     }
1639     // transfer any new features from entry onto sequence
1640     if (entry.getSequenceFeatures() != null)
1641     {
1642
1643       List<SequenceFeature> sfs = entry.getSequenceFeatures();
1644       for (SequenceFeature feature : sfs)
1645       {
1646        SequenceFeature sf[] = (mp != null) ? mp.locateFeature(feature)
1647                 : new SequenceFeature[] { new SequenceFeature(feature) };
1648         if (sf != null)
1649         {
1650           for (int sfi = 0; sfi < sf.length; sfi++)
1651           {
1652             addSequenceFeature(sf[sfi]);
1653           }
1654         }
1655       }
1656     }
1657
1658     // transfer PDB entries
1659     if (entry.getAllPDBEntries() != null)
1660     {
1661       Enumeration<PDBEntry> e = entry.getAllPDBEntries().elements();
1662       while (e.hasMoreElements())
1663       {
1664         PDBEntry pdb = e.nextElement();
1665         addPDBId(pdb);
1666       }
1667     }
1668     // transfer database references
1669     DBRefEntry[] entryRefs = entry.getDBRefs();
1670     if (entryRefs != null)
1671     {
1672       for (int r = 0; r < entryRefs.length; r++)
1673       {
1674         DBRefEntry newref = new DBRefEntry(entryRefs[r]);
1675         if (newref.getMap() != null && mp != null)
1676         {
1677           // remap ref using our local mapping
1678         }
1679         // we also assume all version string setting is done by dbSourceProxy
1680         /*
1681          * if (!newref.getSource().equalsIgnoreCase(dbSource)) {
1682          * newref.setSource(dbSource); }
1683          */
1684         addDBRef(newref);
1685       }
1686     }
1687   }
1688
1689   /**
1690    * @return The index (zero-based) on this sequence in the MSA. It returns
1691    *         {@code -1} if this information is not available.
1692    */
1693   @Override
1694   public int getIndex()
1695   {
1696     return index;
1697   }
1698
1699   /**
1700    * Defines the position of this sequence in the MSA. Use the value {@code -1}
1701    * if this information is undefined.
1702    * 
1703    * @param The
1704    *          position for this sequence. This value is zero-based (zero for
1705    *          this first sequence)
1706    */
1707   @Override
1708   public void setIndex(int value)
1709   {
1710     index = value;
1711   }
1712
1713   @Override
1714   public void setRNA(RNA r)
1715   {
1716     rna = r;
1717   }
1718
1719   @Override
1720   public RNA getRNA()
1721   {
1722     return rna;
1723   }
1724
1725   @Override
1726   public List<AlignmentAnnotation> getAlignmentAnnotations(String calcId,
1727           String label)
1728   {
1729     List<AlignmentAnnotation> result = new ArrayList<>();
1730     if (this.annotation != null)
1731     {
1732       for (AlignmentAnnotation ann : annotation)
1733       {
1734         if (ann.calcId != null && ann.calcId.equals(calcId)
1735                 && ann.label != null && ann.label.equals(label))
1736         {
1737           result.add(ann);
1738         }
1739       }
1740     }
1741     return result;
1742   }
1743
1744   @Override
1745   public String toString()
1746   {
1747     return getDisplayId(false);
1748   }
1749
1750   @Override
1751   public PDBEntry getPDBEntry(String pdbIdStr)
1752   {
1753     if (getDatasetSequence() != null)
1754     {
1755       return getDatasetSequence().getPDBEntry(pdbIdStr);
1756     }
1757     if (pdbIds == null)
1758     {
1759       return null;
1760     }
1761     List<PDBEntry> entries = getAllPDBEntries();
1762     for (PDBEntry entry : entries)
1763     {
1764       if (entry.getId().equalsIgnoreCase(pdbIdStr))
1765       {
1766         return entry;
1767       }
1768     }
1769     return null;
1770   }
1771
1772   @Override
1773   public List<DBRefEntry> getPrimaryDBRefs()
1774   {
1775     if (datasetSequence != null)
1776     {
1777       return datasetSequence.getPrimaryDBRefs();
1778     }
1779     if (dbrefs == null || dbrefs.length == 0)
1780     {
1781       return Collections.emptyList();
1782     }
1783     synchronized (dbrefs)
1784     {
1785       List<DBRefEntry> primaries = new ArrayList<>();
1786       DBRefEntry[] tmp = new DBRefEntry[1];
1787       for (DBRefEntry ref : dbrefs)
1788       {
1789         if (!ref.isPrimaryCandidate())
1790         {
1791           continue;
1792         }
1793         if (ref.hasMap())
1794         {
1795           MapList mp = ref.getMap().getMap();
1796           if (mp.getFromLowest() > start || mp.getFromHighest() < end)
1797           {
1798             // map only involves a subsequence, so cannot be primary
1799             continue;
1800           }
1801         }
1802         // whilst it looks like it is a primary ref, we also sanity check type
1803         if (DBRefUtils.getCanonicalName(DBRefSource.PDB)
1804                 .equals(DBRefUtils.getCanonicalName(ref.getSource())))
1805         {
1806           // PDB dbrefs imply there should be a PDBEntry associated
1807           // TODO: tighten PDB dbrefs
1808           // formally imply Jalview has actually downloaded and
1809           // parsed the pdb file. That means there should be a cached file
1810           // handle on the PDBEntry, and a real mapping between sequence and
1811           // extracted sequence from PDB file
1812           PDBEntry pdbentry = getPDBEntry(ref.getAccessionId());
1813           if (pdbentry != null && pdbentry.getFile() != null)
1814           {
1815             primaries.add(ref);
1816           }
1817           continue;
1818         }
1819         // check standard protein or dna sources
1820         tmp[0] = ref;
1821         DBRefEntry[] res = DBRefUtils.selectDbRefs(!isProtein(), tmp);
1822         if (res != null && res[0] == tmp[0])
1823         {
1824           primaries.add(ref);
1825           continue;
1826         }
1827       }
1828       return primaries;
1829     }
1830   }
1831
1832   /**
1833    * {@inheritDoc}
1834    */
1835   @Override
1836   public List<SequenceFeature> findFeatures(int fromColumn, int toColumn,
1837           String... types)
1838   {
1839     int startPos = findPosition(fromColumn - 1); // convert base 1 to base 0
1840     int endPos = fromColumn == toColumn ? startPos
1841             : findPosition(toColumn - 1);
1842
1843     List<SequenceFeature> result = getFeatures().findFeatures(startPos,
1844             endPos, types);
1845
1846     /*
1847      * if end column is gapped, endPos may be to the right, 
1848      * and we may have included adjacent or enclosing features;
1849      * remove any that are not enclosing, non-contact features
1850      */
1851     if (endPos > this.end || Comparison.isGap(sequence[toColumn - 1]))
1852     {
1853       ListIterator<SequenceFeature> it = result.listIterator();
1854       while (it.hasNext())
1855       {
1856         SequenceFeature sf = it.next();
1857         int sfBegin = sf.getBegin();
1858         int sfEnd = sf.getEnd();
1859         int featureStartColumn = findIndex(sfBegin);
1860         if (featureStartColumn > toColumn)
1861         {
1862           it.remove();
1863         }
1864         else if (featureStartColumn < fromColumn)
1865         {
1866           int featureEndColumn = sfEnd == sfBegin ? featureStartColumn
1867                   : findIndex(sfEnd);
1868           if (featureEndColumn < fromColumn)
1869           {
1870             it.remove();
1871           }
1872           else if (featureEndColumn > toColumn && sf.isContactFeature())
1873           {
1874             /*
1875              * remove an enclosing feature if it is a contact feature
1876              */
1877             it.remove();
1878           }
1879         }
1880       }
1881     }
1882
1883     return result;
1884   }
1885
1886   /**
1887    * Invalidates any stale cursors (forcing recalculation) by incrementing the
1888    * token that has to match the one presented by the cursor
1889    */
1890   @Override
1891   public void sequenceChanged()
1892   {
1893     changeCount++;
1894   }
1895
1896   /**
1897    * {@inheritDoc}
1898    */
1899   @Override
1900   public int replace(char c1, char c2)
1901   {
1902     if (c1 == c2)
1903     {
1904       return 0;
1905     }
1906     int count = 0;
1907     synchronized (sequence)
1908     {
1909       for (int c = 0; c < sequence.length; c++)
1910       {
1911         if (sequence[c] == c1)
1912         {
1913           sequence[c] = c2;
1914           count++;
1915         }
1916       }
1917     }
1918     if (count > 0)
1919     {
1920       sequenceChanged();
1921     }
1922
1923     return count;
1924   }
1925 }