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