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