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