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