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