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