9e81d8188df0e7c3f4047e13d3ac47b283e75209
[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    * Sets the sequence description, and also parses out any special formats of
661    * interest
662    * 
663    * @param desc
664    */
665   @Override
666   public void setDescription(String desc)
667   {
668     this.description = desc;
669   }
670
671   @Override
672   public void setGeneLoci(String speciesId, String assemblyId,
673           String chromosomeId, MapList map)
674   {
675     addDBRef(new DBRefEntry(speciesId, assemblyId, DBRefEntry.CHROMOSOME
676             + ":" + chromosomeId, new Mapping(map)));
677   }
678
679   /**
680    * Returns the gene loci mapping for the sequence (may be null)
681    * 
682    * @return
683    */
684   @Override
685   public GeneLociI getGeneLoci()
686   {
687     DBRefEntry[] refs = getDBRefs();
688     if (refs != null)
689     {
690       for (final DBRefEntry ref : refs)
691       {
692         if (ref.isChromosome())
693         {
694           return new GeneLociI()
695           {
696             @Override
697             public String getSpeciesId()
698             {
699               return ref.getSource();
700             }
701
702             @Override
703             public String getAssemblyId()
704             {
705               return ref.getVersion();
706             }
707
708             @Override
709             public String getChromosomeId()
710             {
711               // strip off "chromosome:" prefix to chrId
712               return ref.getAccessionId().substring(
713                       DBRefEntry.CHROMOSOME.length() + 1);
714             }
715
716             @Override
717             public MapList getMap()
718             {
719               return ref.getMap().getMap();
720             }
721           };
722         }
723       }
724     }
725     return null;
726   }
727
728   /**
729    * Answers the description
730    * 
731    * @return
732    */
733   @Override
734   public String getDescription()
735   {
736     return this.description;
737   }
738
739   /**
740    * {@inheritDoc}
741    */
742   @Override
743   public int findIndex(int pos)
744   {
745     /*
746      * use a valid, hopefully nearby, cursor if available
747      */
748     if (isValidCursor(cursor))
749     {
750       return findIndex(pos, cursor);
751     }
752
753     int j = start;
754     int i = 0;
755     int startColumn = 0;
756
757     /*
758      * traverse sequence from the start counting gaps; make a note of
759      * the column of the first residue to save in the cursor
760      */
761     while ((i < sequence.length) && (j <= end) && (j <= pos))
762     {
763       if (!Comparison.isGap(sequence[i]))
764       {
765         if (j == start)
766         {
767           startColumn = i;
768         }
769         j++;
770       }
771       i++;
772     }
773
774     if (j == end && j < pos)
775     {
776       return end + 1;
777     }
778
779     updateCursor(pos, i, startColumn);
780     return i;
781   }
782
783   /**
784    * Updates the cursor to the latest found residue and column position
785    * 
786    * @param residuePos
787    *          (start..)
788    * @param column
789    *          (1..)
790    * @param startColumn
791    *          column position of the first sequence residue
792    */
793   protected void updateCursor(int residuePos, int column, int startColumn)
794   {
795     /*
796      * preserve end residue column provided cursor was valid
797      */
798     int endColumn = isValidCursor(cursor) ? cursor.lastColumnPosition : 0;
799     if (residuePos == this.end)
800     {
801       endColumn = column;
802     }
803
804     cursor = new SequenceCursor(this, residuePos, column, startColumn,
805             endColumn, this.changeCount);
806   }
807
808   /**
809    * Answers the aligned column position (1..) for the given residue position
810    * (start..) given a 'hint' of a residue/column location in the neighbourhood.
811    * The hint may be left of, at, or to the right of the required position.
812    * 
813    * @param pos
814    * @param curs
815    * @return
816    */
817   protected int findIndex(int pos, SequenceCursor curs)
818   {
819     if (!isValidCursor(curs))
820     {
821       /*
822        * wrong or invalidated cursor, compute de novo
823        */
824       return findIndex(pos);
825     }
826
827     if (curs.residuePosition == pos)
828     {
829       return curs.columnPosition;
830     }
831
832     /*
833      * move left or right to find pos from hint.position
834      */
835     int col = curs.columnPosition - 1; // convert from base 1 to 0-based array
836                                        // index
837     int newPos = curs.residuePosition;
838     int delta = newPos > pos ? -1 : 1;
839
840     while (newPos != pos)
841     {
842       col += delta; // shift one column left or right
843       if (col < 0 || col == sequence.length)
844       {
845         break;
846       }
847       if (!Comparison.isGap(sequence[col]))
848       {
849         newPos += delta;
850       }
851     }
852
853     col++; // convert back to base 1
854     updateCursor(pos, col, curs.firstColumnPosition);
855
856     return col;
857   }
858
859   /**
860    * {@inheritDoc}
861    */
862   @Override
863   public int findPosition(final int column)
864   {
865     /*
866      * use a valid, hopefully nearby, cursor if available
867      */
868     if (isValidCursor(cursor))
869     {
870       return findPosition(column + 1, cursor);
871     }
872     
873     // TODO recode this more naturally i.e. count residues only
874     // as they are found, not 'in anticipation'
875
876     /*
877      * traverse the sequence counting gaps; note the column position
878      * of the first residue, to save in the cursor
879      */
880     int firstResidueColumn = 0;
881     int lastPosFound = 0;
882     int lastPosFoundColumn = 0;
883     int seqlen = sequence.length;
884
885     if (seqlen > 0 && !Comparison.isGap(sequence[0]))
886     {
887       lastPosFound = start;
888       lastPosFoundColumn = 0;
889     }
890
891     int j = 0;
892     int pos = start;
893
894     while (j < column && j < seqlen)
895     {
896       if (!Comparison.isGap(sequence[j]))
897       {
898         lastPosFound = pos;
899         lastPosFoundColumn = j;
900         if (pos == this.start)
901         {
902           firstResidueColumn = j;
903         }
904         pos++;
905       }
906       j++;
907     }
908     if (j < seqlen && !Comparison.isGap(sequence[j]))
909     {
910       lastPosFound = pos;
911       lastPosFoundColumn = j;
912       if (pos == this.start)
913       {
914         firstResidueColumn = j;
915       }
916     }
917
918     /*
919      * update the cursor to the last residue position found (if any)
920      * (converting column position to base 1)
921      */
922     if (lastPosFound != 0)
923     {
924       updateCursor(lastPosFound, lastPosFoundColumn + 1,
925               firstResidueColumn + 1);
926     }
927
928     return pos;
929   }
930
931   /**
932    * Answers true if the given cursor is not null, is for this sequence object,
933    * and has a token value that matches this object's changeCount, else false.
934    * This allows us to ignore a cursor as 'stale' if the sequence has been
935    * modified since the cursor was created.
936    * 
937    * @param curs
938    * @return
939    */
940   protected boolean isValidCursor(SequenceCursor curs)
941   {
942     if (curs == null || curs.sequence != this || curs.token != changeCount)
943     {
944       return false;
945     }
946     /*
947      * sanity check against range
948      */
949     if (curs.columnPosition < 0 || curs.columnPosition > sequence.length)
950     {
951       return false;
952     }
953     if (curs.residuePosition < start || curs.residuePosition > end)
954     {
955       return false;
956     }
957     return true;
958   }
959
960   /**
961    * Answers the sequence position (start..) for the given aligned column
962    * position (1..), given a hint of a cursor in the neighbourhood. The cursor
963    * may lie left of, at, or to the right of the column position.
964    * 
965    * @param col
966    * @param curs
967    * @return
968    */
969   protected int findPosition(final int col, SequenceCursor curs)
970   {
971     if (!isValidCursor(curs))
972     {
973       /*
974        * wrong or invalidated cursor, compute de novo
975        */
976       return findPosition(col - 1);// ugh back to base 0
977     }
978
979     if (curs.columnPosition == col)
980     {
981       cursor = curs; // in case this method becomes public
982       return curs.residuePosition; // easy case :-)
983     }
984
985     if (curs.lastColumnPosition > 0 && curs.lastColumnPosition < col)
986     {
987       /*
988        * sequence lies entirely to the left of col
989        * - return last residue + 1
990        */
991       return end + 1;
992     }
993
994     if (curs.firstColumnPosition > 0 && curs.firstColumnPosition > col)
995     {
996       /*
997        * sequence lies entirely to the right of col
998        * - return first residue
999        */
1000       return start;
1001     }
1002
1003     // todo could choose closest to col out of column,
1004     // firstColumnPosition, lastColumnPosition as a start point
1005
1006     /*
1007      * move left or right to find pos from cursor position
1008      */
1009     int firstResidueColumn = curs.firstColumnPosition;
1010     int column = curs.columnPosition - 1; // to base 0
1011     int newPos = curs.residuePosition;
1012     int delta = curs.columnPosition > col ? -1 : 1;
1013     boolean gapped = false;
1014     int lastFoundPosition = curs.residuePosition;
1015     int lastFoundPositionColumn = curs.columnPosition;
1016
1017     while (column != col - 1)
1018     {
1019       column += delta; // shift one column left or right
1020       if (column < 0 || column == sequence.length)
1021       {
1022         break;
1023       }
1024       gapped = Comparison.isGap(sequence[column]);
1025       if (!gapped)
1026       {
1027         newPos += delta;
1028         lastFoundPosition = newPos;
1029         lastFoundPositionColumn = column + 1;
1030         if (lastFoundPosition == this.start)
1031         {
1032           firstResidueColumn = column + 1;
1033         }
1034       }
1035     }
1036
1037     if (cursor == null || lastFoundPosition != cursor.residuePosition)
1038     {
1039       updateCursor(lastFoundPosition, lastFoundPositionColumn,
1040               firstResidueColumn);
1041     }
1042
1043     /*
1044      * hack to give position to the right if on a gap
1045      * or beyond the length of the sequence (see JAL-2562)
1046      */
1047     if (delta > 0 && (gapped || column >= sequence.length))
1048     {
1049       newPos++;
1050     }
1051
1052     return newPos;
1053   }
1054
1055   /**
1056    * {@inheritDoc}
1057    */
1058   @Override
1059   public Range findPositions(int fromColumn, int toColumn)
1060   {
1061     if (toColumn < fromColumn || fromColumn < 1)
1062     {
1063       return null;
1064     }
1065
1066     /*
1067      * find the first non-gapped position, if any
1068      */
1069     int firstPosition = 0;
1070     int col = fromColumn - 1;
1071     int length = sequence.length;
1072     while (col < length && col < toColumn)
1073     {
1074       if (!Comparison.isGap(sequence[col]))
1075       {
1076         firstPosition = findPosition(col++);
1077         break;
1078       }
1079       col++;
1080     }
1081
1082     if (firstPosition == 0)
1083     {
1084       return null;
1085     }
1086
1087     /*
1088      * find the last non-gapped position
1089      */
1090     int lastPosition = firstPosition;
1091     while (col < length && col < toColumn)
1092     {
1093       if (!Comparison.isGap(sequence[col++]))
1094       {
1095         lastPosition++;
1096       }
1097     }
1098
1099     return new Range(firstPosition, lastPosition);
1100   }
1101
1102   /**
1103    * Returns an int array where indices correspond to each residue in the
1104    * sequence and the element value gives its position in the alignment
1105    * 
1106    * @return int[SequenceI.getEnd()-SequenceI.getStart()+1] or null if no
1107    *         residues in SequenceI object
1108    */
1109   @Override
1110   public int[] gapMap()
1111   {
1112     String seq = jalview.analysis.AlignSeq.extractGaps(
1113             jalview.util.Comparison.GapChars, new String(sequence));
1114     int[] map = new int[seq.length()];
1115     int j = 0;
1116     int p = 0;
1117
1118     while (j < sequence.length)
1119     {
1120       if (!jalview.util.Comparison.isGap(sequence[j]))
1121       {
1122         map[p++] = j;
1123       }
1124
1125       j++;
1126     }
1127
1128     return map;
1129   }
1130
1131   @Override
1132   public int[] findPositionMap()
1133   {
1134     int map[] = new int[sequence.length];
1135     int j = 0;
1136     int pos = start;
1137     int seqlen = sequence.length;
1138     while ((j < seqlen))
1139     {
1140       map[j] = pos;
1141       if (!jalview.util.Comparison.isGap(sequence[j]))
1142       {
1143         pos++;
1144       }
1145
1146       j++;
1147     }
1148     return map;
1149   }
1150
1151   @Override
1152   public List<int[]> getInsertions()
1153   {
1154     ArrayList<int[]> map = new ArrayList<int[]>();
1155     int lastj = -1, j = 0;
1156     int pos = start;
1157     int seqlen = sequence.length;
1158     while ((j < seqlen))
1159     {
1160       if (jalview.util.Comparison.isGap(sequence[j]))
1161       {
1162         if (lastj == -1)
1163         {
1164           lastj = j;
1165         }
1166       }
1167       else
1168       {
1169         if (lastj != -1)
1170         {
1171           map.add(new int[] { lastj, j - 1 });
1172           lastj = -1;
1173         }
1174       }
1175       j++;
1176     }
1177     if (lastj != -1)
1178     {
1179       map.add(new int[] { lastj, j - 1 });
1180       lastj = -1;
1181     }
1182     return map;
1183   }
1184
1185   @Override
1186   public BitSet getInsertionsAsBits()
1187   {
1188     BitSet map = new BitSet();
1189     int lastj = -1, j = 0;
1190     int pos = start;
1191     int seqlen = sequence.length;
1192     while ((j < seqlen))
1193     {
1194       if (jalview.util.Comparison.isGap(sequence[j]))
1195       {
1196         if (lastj == -1)
1197         {
1198           lastj = j;
1199         }
1200       }
1201       else
1202       {
1203         if (lastj != -1)
1204         {
1205           map.set(lastj, j);
1206           lastj = -1;
1207         }
1208       }
1209       j++;
1210     }
1211     if (lastj != -1)
1212     {
1213       map.set(lastj, j);
1214       lastj = -1;
1215     }
1216     return map;
1217   }
1218
1219   @Override
1220   public void deleteChars(int i, int j)
1221   {
1222     int newstart = start, newend = end;
1223     if (i >= sequence.length || i < 0)
1224     {
1225       return;
1226     }
1227
1228     char[] tmp = StringUtils.deleteChars(sequence, i, j);
1229     boolean createNewDs = false;
1230     // TODO: take a (second look) at the dataset creation validation method for
1231     // the very large sequence case
1232     int eindex = -1, sindex = -1;
1233     boolean ecalc = false, scalc = false;
1234     for (int s = i; s < j; s++)
1235     {
1236       if (jalview.schemes.ResidueProperties.aaIndex[sequence[s]] != 23)
1237       {
1238         if (createNewDs)
1239         {
1240           newend--;
1241         }
1242         else
1243         {
1244           if (!scalc)
1245           {
1246             sindex = findIndex(start) - 1;
1247             scalc = true;
1248           }
1249           if (sindex == s)
1250           {
1251             // delete characters including start of sequence
1252             newstart = findPosition(j);
1253             break; // don't need to search for any more residue characters.
1254           }
1255           else
1256           {
1257             // delete characters after start.
1258             if (!ecalc)
1259             {
1260               eindex = findIndex(end) - 1;
1261               ecalc = true;
1262             }
1263             if (eindex < j)
1264             {
1265               // delete characters at end of sequence
1266               newend = findPosition(i - 1);
1267               break; // don't need to search for any more residue characters.
1268             }
1269             else
1270             {
1271               createNewDs = true;
1272               newend--; // decrease end position by one for the deleted residue
1273               // and search further
1274             }
1275           }
1276         }
1277       }
1278     }
1279     // deletion occured in the middle of the sequence
1280     if (createNewDs && this.datasetSequence != null)
1281     {
1282       // construct a new sequence
1283       Sequence ds = new Sequence(datasetSequence);
1284       // TODO: remove any non-inheritable properties ?
1285       // TODO: create a sequence mapping (since there is a relation here ?)
1286       ds.deleteChars(i, j);
1287       datasetSequence = ds;
1288     }
1289     start = newstart;
1290     end = newend;
1291     sequence = tmp;
1292     sequenceChanged();
1293   }
1294
1295   @Override
1296   public void insertCharAt(int i, int length, char c)
1297   {
1298     char[] tmp = new char[sequence.length + length];
1299
1300     if (i >= sequence.length)
1301     {
1302       System.arraycopy(sequence, 0, tmp, 0, sequence.length);
1303       i = sequence.length;
1304     }
1305     else
1306     {
1307       System.arraycopy(sequence, 0, tmp, 0, i);
1308     }
1309
1310     int index = i;
1311     while (length > 0)
1312     {
1313       tmp[index++] = c;
1314       length--;
1315     }
1316
1317     if (i < sequence.length)
1318     {
1319       System.arraycopy(sequence, i, tmp, index, sequence.length - i);
1320     }
1321
1322     sequence = tmp;
1323     sequenceChanged();
1324   }
1325
1326   @Override
1327   public void insertCharAt(int i, char c)
1328   {
1329     insertCharAt(i, 1, c);
1330   }
1331
1332   @Override
1333   public String getVamsasId()
1334   {
1335     return vamsasId;
1336   }
1337
1338   @Override
1339   public void setVamsasId(String id)
1340   {
1341     vamsasId = id;
1342   }
1343
1344   @Override
1345   public void setDBRefs(DBRefEntry[] dbref)
1346   {
1347     if (dbrefs == null && datasetSequence != null
1348             && this != datasetSequence)
1349     {
1350       datasetSequence.setDBRefs(dbref);
1351       return;
1352     }
1353     dbrefs = dbref;
1354     if (dbrefs != null)
1355     {
1356       DBRefUtils.ensurePrimaries(this);
1357     }
1358   }
1359
1360   @Override
1361   public DBRefEntry[] getDBRefs()
1362   {
1363     if (dbrefs == null && datasetSequence != null
1364             && this != datasetSequence)
1365     {
1366       return datasetSequence.getDBRefs();
1367     }
1368     return dbrefs;
1369   }
1370
1371   @Override
1372   public void addDBRef(DBRefEntry entry)
1373   {
1374     if (datasetSequence != null)
1375     {
1376       datasetSequence.addDBRef(entry);
1377       return;
1378     }
1379
1380     if (dbrefs == null)
1381     {
1382       dbrefs = new DBRefEntry[0];
1383     }
1384
1385     for (DBRefEntryI dbr : dbrefs)
1386     {
1387       if (dbr.updateFrom(entry))
1388       {
1389         /*
1390          * found a dbref that either matched, or could be
1391          * updated from, the new entry - no need to add it
1392          */
1393         return;
1394       }
1395     }
1396
1397     /*
1398      * extend the array to make room for one more
1399      */
1400     // TODO use an ArrayList instead
1401     int j = dbrefs.length;
1402     DBRefEntry[] temp = new DBRefEntry[j + 1];
1403     System.arraycopy(dbrefs, 0, temp, 0, j);
1404     temp[temp.length - 1] = entry;
1405
1406     dbrefs = temp;
1407
1408     DBRefUtils.ensurePrimaries(this);
1409   }
1410
1411   @Override
1412   public void setDatasetSequence(SequenceI seq)
1413   {
1414     if (seq == this)
1415     {
1416       throw new IllegalArgumentException(
1417               "Implementation Error: self reference passed to SequenceI.setDatasetSequence");
1418     }
1419     if (seq != null && seq.getDatasetSequence() != null)
1420     {
1421       throw new IllegalArgumentException(
1422               "Implementation error: cascading dataset sequences are not allowed.");
1423     }
1424     datasetSequence = seq;
1425   }
1426
1427   @Override
1428   public SequenceI getDatasetSequence()
1429   {
1430     return datasetSequence;
1431   }
1432
1433   @Override
1434   public AlignmentAnnotation[] getAnnotation()
1435   {
1436     return annotation == null ? null
1437             : annotation
1438                     .toArray(new AlignmentAnnotation[annotation.size()]);
1439   }
1440
1441   @Override
1442   public boolean hasAnnotation(AlignmentAnnotation ann)
1443   {
1444     return annotation == null ? false : annotation.contains(ann);
1445   }
1446
1447   @Override
1448   public void addAlignmentAnnotation(AlignmentAnnotation annotation)
1449   {
1450     if (this.annotation == null)
1451     {
1452       this.annotation = new Vector<AlignmentAnnotation>();
1453     }
1454     if (!this.annotation.contains(annotation))
1455     {
1456       this.annotation.addElement(annotation);
1457     }
1458     annotation.setSequenceRef(this);
1459   }
1460
1461   @Override
1462   public void removeAlignmentAnnotation(AlignmentAnnotation annotation)
1463   {
1464     if (this.annotation != null)
1465     {
1466       this.annotation.removeElement(annotation);
1467       if (this.annotation.size() == 0)
1468       {
1469         this.annotation = null;
1470       }
1471     }
1472   }
1473
1474   /**
1475    * test if this is a valid candidate for another sequence's dataset sequence.
1476    * 
1477    */
1478   private boolean isValidDatasetSequence()
1479   {
1480     if (datasetSequence != null)
1481     {
1482       return false;
1483     }
1484     for (int i = 0; i < sequence.length; i++)
1485     {
1486       if (jalview.util.Comparison.isGap(sequence[i]))
1487       {
1488         return false;
1489       }
1490     }
1491     return true;
1492   }
1493
1494   @Override
1495   public SequenceI deriveSequence()
1496   {
1497     Sequence seq = null;
1498     if (datasetSequence == null)
1499     {
1500       if (isValidDatasetSequence())
1501       {
1502         // Use this as dataset sequence
1503         seq = new Sequence(getName(), "", 1, -1);
1504         seq.setDatasetSequence(this);
1505         seq.initSeqFrom(this, getAnnotation());
1506         return seq;
1507       }
1508       else
1509       {
1510         // Create a new, valid dataset sequence
1511         createDatasetSequence();
1512       }
1513     }
1514     return new Sequence(this);
1515   }
1516
1517   private boolean _isNa;
1518
1519   private int _seqhash = 0;
1520
1521   /**
1522    * Answers false if the sequence is more than 85% nucleotide (ACGTU), else
1523    * true
1524    */
1525   @Override
1526   public boolean isProtein()
1527   {
1528     if (datasetSequence != null)
1529     {
1530       return datasetSequence.isProtein();
1531     }
1532     if (_seqhash != sequence.hashCode())
1533     {
1534       _seqhash = sequence.hashCode();
1535       _isNa = Comparison.isNucleotide(this);
1536     }
1537     return !_isNa;
1538   };
1539
1540   /*
1541    * (non-Javadoc)
1542    * 
1543    * @see jalview.datamodel.SequenceI#createDatasetSequence()
1544    */
1545   @Override
1546   public SequenceI createDatasetSequence()
1547   {
1548     if (datasetSequence == null)
1549     {
1550       Sequence dsseq = new Sequence(getName(),
1551               AlignSeq.extractGaps(jalview.util.Comparison.GapChars,
1552                       getSequenceAsString()),
1553               getStart(), getEnd());
1554
1555       datasetSequence = dsseq;
1556
1557       dsseq.setDescription(description);
1558       // move features and database references onto dataset sequence
1559       dsseq.sequenceFeatureStore = sequenceFeatureStore;
1560       sequenceFeatureStore = null;
1561       dsseq.dbrefs = dbrefs;
1562       dbrefs = null;
1563       // TODO: search and replace any references to this sequence with
1564       // references to the dataset sequence in Mappings on dbref
1565       dsseq.pdbIds = pdbIds;
1566       pdbIds = null;
1567       datasetSequence.updatePDBIds();
1568       if (annotation != null)
1569       {
1570         // annotation is cloned rather than moved, to preserve what's currently
1571         // on the alignment
1572         for (AlignmentAnnotation aa : annotation)
1573         {
1574           AlignmentAnnotation _aa = new AlignmentAnnotation(aa);
1575           _aa.sequenceRef = datasetSequence;
1576           _aa.adjustForAlignment(); // uses annotation's own record of
1577                                     // sequence-column mapping
1578           datasetSequence.addAlignmentAnnotation(_aa);
1579         }
1580       }
1581     }
1582     return datasetSequence;
1583   }
1584
1585   /*
1586    * (non-Javadoc)
1587    * 
1588    * @see
1589    * jalview.datamodel.SequenceI#setAlignmentAnnotation(AlignmmentAnnotation[]
1590    * annotations)
1591    */
1592   @Override
1593   public void setAlignmentAnnotation(AlignmentAnnotation[] annotations)
1594   {
1595     if (annotation != null)
1596     {
1597       annotation.removeAllElements();
1598     }
1599     if (annotations != null)
1600     {
1601       for (int i = 0; i < annotations.length; i++)
1602       {
1603         if (annotations[i] != null)
1604         {
1605           addAlignmentAnnotation(annotations[i]);
1606         }
1607       }
1608     }
1609   }
1610
1611   @Override
1612   public AlignmentAnnotation[] getAnnotation(String label)
1613   {
1614     if (annotation == null || annotation.size() == 0)
1615     {
1616       return null;
1617     }
1618
1619     Vector<AlignmentAnnotation> subset = new Vector<AlignmentAnnotation>();
1620     Enumeration<AlignmentAnnotation> e = annotation.elements();
1621     while (e.hasMoreElements())
1622     {
1623       AlignmentAnnotation ann = e.nextElement();
1624       if (ann.label != null && ann.label.equals(label))
1625       {
1626         subset.addElement(ann);
1627       }
1628     }
1629     if (subset.size() == 0)
1630     {
1631       return null;
1632     }
1633     AlignmentAnnotation[] anns = new AlignmentAnnotation[subset.size()];
1634     int i = 0;
1635     e = subset.elements();
1636     while (e.hasMoreElements())
1637     {
1638       anns[i++] = e.nextElement();
1639     }
1640     subset.removeAllElements();
1641     return anns;
1642   }
1643
1644   @Override
1645   public boolean updatePDBIds()
1646   {
1647     if (datasetSequence != null)
1648     {
1649       // TODO: could merge DBRefs
1650       return datasetSequence.updatePDBIds();
1651     }
1652     if (dbrefs == null || dbrefs.length == 0)
1653     {
1654       return false;
1655     }
1656     boolean added = false;
1657     for (DBRefEntry dbr : dbrefs)
1658     {
1659       if (DBRefSource.PDB.equals(dbr.getSource()))
1660       {
1661         /*
1662          * 'Add' any PDB dbrefs as a PDBEntry - add is only performed if the
1663          * PDB id is not already present in a 'matching' PDBEntry
1664          * Constructor parses out a chain code if appended to the accession id
1665          * (a fudge used to 'store' the chain code in the DBRef)
1666          */
1667         PDBEntry pdbe = new PDBEntry(dbr);
1668         added |= addPDBId(pdbe);
1669       }
1670     }
1671     return added;
1672   }
1673
1674   @Override
1675   public void transferAnnotation(SequenceI entry, Mapping mp)
1676   {
1677     if (datasetSequence != null)
1678     {
1679       datasetSequence.transferAnnotation(entry, mp);
1680       return;
1681     }
1682     if (entry.getDatasetSequence() != null)
1683     {
1684       transferAnnotation(entry.getDatasetSequence(), mp);
1685       return;
1686     }
1687     // transfer any new features from entry onto sequence
1688     if (entry.getSequenceFeatures() != null)
1689     {
1690
1691       List<SequenceFeature> sfs = entry.getSequenceFeatures();
1692       for (SequenceFeature feature : sfs)
1693       {
1694        SequenceFeature sf[] = (mp != null) ? mp.locateFeature(feature)
1695                 : new SequenceFeature[] { new SequenceFeature(feature) };
1696         if (sf != null)
1697         {
1698           for (int sfi = 0; sfi < sf.length; sfi++)
1699           {
1700             addSequenceFeature(sf[sfi]);
1701           }
1702         }
1703       }
1704     }
1705
1706     // transfer PDB entries
1707     if (entry.getAllPDBEntries() != null)
1708     {
1709       Enumeration<PDBEntry> e = entry.getAllPDBEntries().elements();
1710       while (e.hasMoreElements())
1711       {
1712         PDBEntry pdb = e.nextElement();
1713         addPDBId(pdb);
1714       }
1715     }
1716     // transfer database references
1717     DBRefEntry[] entryRefs = entry.getDBRefs();
1718     if (entryRefs != null)
1719     {
1720       for (int r = 0; r < entryRefs.length; r++)
1721       {
1722         DBRefEntry newref = new DBRefEntry(entryRefs[r]);
1723         if (newref.getMap() != null && mp != null)
1724         {
1725           // remap ref using our local mapping
1726         }
1727         // we also assume all version string setting is done by dbSourceProxy
1728         /*
1729          * if (!newref.getSource().equalsIgnoreCase(dbSource)) {
1730          * newref.setSource(dbSource); }
1731          */
1732         addDBRef(newref);
1733       }
1734     }
1735   }
1736
1737   @Override
1738   public void setRNA(RNA r)
1739   {
1740     rna = r;
1741   }
1742
1743   @Override
1744   public RNA getRNA()
1745   {
1746     return rna;
1747   }
1748
1749   @Override
1750   public List<AlignmentAnnotation> getAlignmentAnnotations(String calcId,
1751           String label)
1752   {
1753     List<AlignmentAnnotation> result = new ArrayList<AlignmentAnnotation>();
1754     if (this.annotation != null)
1755     {
1756       for (AlignmentAnnotation ann : annotation)
1757       {
1758         if (ann.calcId != null && ann.calcId.equals(calcId)
1759                 && ann.label != null && ann.label.equals(label))
1760         {
1761           result.add(ann);
1762         }
1763       }
1764     }
1765     return result;
1766   }
1767
1768   @Override
1769   public String toString()
1770   {
1771     return getDisplayId(false);
1772   }
1773
1774   @Override
1775   public PDBEntry getPDBEntry(String pdbIdStr)
1776   {
1777     if (getDatasetSequence() != null)
1778     {
1779       return getDatasetSequence().getPDBEntry(pdbIdStr);
1780     }
1781     if (pdbIds == null)
1782     {
1783       return null;
1784     }
1785     List<PDBEntry> entries = getAllPDBEntries();
1786     for (PDBEntry entry : entries)
1787     {
1788       if (entry.getId().equalsIgnoreCase(pdbIdStr))
1789       {
1790         return entry;
1791       }
1792     }
1793     return null;
1794   }
1795
1796   @Override
1797   public List<DBRefEntry> getPrimaryDBRefs()
1798   {
1799     if (datasetSequence != null)
1800     {
1801       return datasetSequence.getPrimaryDBRefs();
1802     }
1803     if (dbrefs == null || dbrefs.length == 0)
1804     {
1805       return Collections.emptyList();
1806     }
1807     synchronized (dbrefs)
1808     {
1809       List<DBRefEntry> primaries = new ArrayList<DBRefEntry>();
1810       DBRefEntry[] tmp = new DBRefEntry[1];
1811       for (DBRefEntry ref : dbrefs)
1812       {
1813         if (!ref.isPrimaryCandidate())
1814         {
1815           continue;
1816         }
1817         if (ref.hasMap())
1818         {
1819           MapList mp = ref.getMap().getMap();
1820           if (mp.getFromLowest() > start || mp.getFromHighest() < end)
1821           {
1822             // map only involves a subsequence, so cannot be primary
1823             continue;
1824           }
1825         }
1826         // whilst it looks like it is a primary ref, we also sanity check type
1827         if (DBRefUtils.getCanonicalName(DBRefSource.PDB)
1828                 .equals(DBRefUtils.getCanonicalName(ref.getSource())))
1829         {
1830           // PDB dbrefs imply there should be a PDBEntry associated
1831           // TODO: tighten PDB dbrefs
1832           // formally imply Jalview has actually downloaded and
1833           // parsed the pdb file. That means there should be a cached file
1834           // handle on the PDBEntry, and a real mapping between sequence and
1835           // extracted sequence from PDB file
1836           PDBEntry pdbentry = getPDBEntry(ref.getAccessionId());
1837           if (pdbentry != null && pdbentry.getFile() != null)
1838           {
1839             primaries.add(ref);
1840           }
1841           continue;
1842         }
1843         // check standard protein or dna sources
1844         tmp[0] = ref;
1845         DBRefEntry[] res = DBRefUtils.selectDbRefs(!isProtein(), tmp);
1846         if (res != null && res[0] == tmp[0])
1847         {
1848           primaries.add(ref);
1849           continue;
1850         }
1851       }
1852       return primaries;
1853     }
1854   }
1855
1856   /**
1857    * {@inheritDoc}
1858    */
1859   @Override
1860   public List<SequenceFeature> findFeatures(int fromColumn, int toColumn,
1861           String... types)
1862   {
1863     int startPos = findPosition(fromColumn - 1); // convert base 1 to base 0
1864     int endPos = fromColumn == toColumn ? startPos
1865             : findPosition(toColumn - 1);
1866
1867     List<SequenceFeature> result = getFeatures().findFeatures(startPos,
1868             endPos, types);
1869
1870     /*
1871      * if end column is gapped, endPos may be to the right, 
1872      * and we may have included adjacent or enclosing features;
1873      * remove any that are not enclosing, non-contact features
1874      */
1875     boolean endColumnIsGapped = toColumn > 0 && toColumn <= sequence.length
1876             && Comparison.isGap(sequence[toColumn - 1]);
1877     if (endPos > this.end || endColumnIsGapped)
1878     {
1879       ListIterator<SequenceFeature> it = result.listIterator();
1880       while (it.hasNext())
1881       {
1882         SequenceFeature sf = it.next();
1883         int sfBegin = sf.getBegin();
1884         int sfEnd = sf.getEnd();
1885         int featureStartColumn = findIndex(sfBegin);
1886         if (featureStartColumn > toColumn)
1887         {
1888           it.remove();
1889         }
1890         else if (featureStartColumn < fromColumn)
1891         {
1892           int featureEndColumn = sfEnd == sfBegin ? featureStartColumn
1893                   : findIndex(sfEnd);
1894           if (featureEndColumn < fromColumn)
1895           {
1896             it.remove();
1897           }
1898           else if (featureEndColumn > toColumn && sf.isContactFeature())
1899           {
1900             /*
1901              * remove an enclosing feature if it is a contact feature
1902              */
1903             it.remove();
1904           }
1905         }
1906       }
1907     }
1908
1909     return result;
1910   }
1911
1912   /**
1913    * Invalidates any stale cursors (forcing recalculation) by incrementing the
1914    * token that has to match the one presented by the cursor
1915    */
1916   @Override
1917   public void sequenceChanged()
1918   {
1919     changeCount++;
1920   }
1921
1922   /**
1923    * {@inheritDoc}
1924    */
1925   @Override
1926   public int replace(char c1, char c2)
1927   {
1928     if (c1 == c2)
1929     {
1930       return 0;
1931     }
1932     int count = 0;
1933     synchronized (sequence)
1934     {
1935       for (int c = 0; c < sequence.length; c++)
1936       {
1937         if (sequence[c] == c1)
1938         {
1939           sequence[c] = c2;
1940           count++;
1941         }
1942       }
1943     }
1944     if (count > 0)
1945     {
1946       sequenceChanged();
1947     }
1948
1949     return count;
1950   }
1951 }