c3d17dc70d5ad9bbecee0aefa0ad36144769f128
[jalview.git] / src / jalview / datamodel / AlignedCodonFrame.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.util.MapList;
24 import jalview.util.MappingUtils;
25
26 import java.util.AbstractList;
27 import java.util.ArrayList;
28 import java.util.List;
29
30 /**
31  * Stores mapping between the columns of a protein alignment and a DNA alignment
32  * and a list of individual codon to amino acid mappings between sequences.
33  */
34 public class AlignedCodonFrame
35 {
36
37   /*
38    * Data bean to hold mappings from one sequence to another
39    */
40   public class SequenceToSequenceMapping
41   {
42     private SequenceI fromSeq;
43
44     private Mapping mapping;
45
46     SequenceToSequenceMapping(SequenceI from, Mapping map)
47     {
48       this.fromSeq = from;
49       this.mapping = map;
50     }
51
52     /**
53      * Readable representation for debugging only, not guaranteed not to change
54      */
55     @Override
56     public String toString()
57     {
58       return String.format("From %s %s", fromSeq.getName(),
59               mapping.toString());
60     }
61
62     /**
63      * Returns a hashCode derived from the hashcodes of the mappings and fromSeq
64      * 
65      * @see SequenceToSequenceMapping#hashCode()
66      */
67     @Override
68     public int hashCode()
69     {
70       return (fromSeq == null ? 0 : fromSeq.hashCode() * 31)
71               + mapping.hashCode();
72     }
73
74     /**
75      * Answers true if the objects hold the same mapping between the same two
76      * sequences
77      * 
78      * @see Mapping#equals
79      */
80     @Override
81     public boolean equals(Object obj)
82     {
83       if (!(obj instanceof SequenceToSequenceMapping))
84       {
85         return false;
86       }
87       SequenceToSequenceMapping that = (SequenceToSequenceMapping) obj;
88       if (this.mapping == null)
89       {
90         return that.mapping == null;
91       }
92       // TODO: can simplify by asserting fromSeq is a dataset sequence
93       return (this.fromSeq == that.fromSeq
94               || (this.fromSeq != null && that.fromSeq != null
95                       && this.fromSeq.getDatasetSequence() != null
96                       && this.fromSeq.getDatasetSequence() == that.fromSeq
97                               .getDatasetSequence()))
98               && this.mapping.equals(that.mapping);
99     }
100
101     public SequenceI getFromSeq()
102     {
103       return fromSeq;
104     }
105
106     public Mapping getMapping()
107     {
108       return mapping;
109     }
110
111     /**
112      * Returns true if the mapping covers the full length of the given sequence.
113      * This allows us to distinguish the CDS that codes for a protein from
114      * another overlapping CDS in the parent dna sequence.
115      * 
116      * @param seq
117      * @return
118      */
119     public boolean covers(SequenceI seq)
120     {
121       return covers(seq,false);
122     }
123     /**
124      * 
125      * @param seq
126      * @param localCover - when true - compare extent of seq's dataset sequence rather than the local extent 
127      * @return true if mapping covers full length of given sequence 
128      */
129     public boolean covers(SequenceI seq, boolean localCover)
130     {
131       List<int[]> mappedRanges = null;
132       MapList mapList = mapping.getMap();
133       int mstart=seq.getStart(),mend=seq.getEnd()
134               ;
135       if (fromSeq == seq || fromSeq == seq.getDatasetSequence())
136       {
137         if (localCover && fromSeq !=seq)
138         {
139           mstart=fromSeq.getStart();
140           mend=fromSeq.getEnd();
141         }
142         mappedRanges = mapList.getFromRanges();
143       }
144       else if (mapping.to == seq || mapping.to == seq.getDatasetSequence())
145       {
146         if (localCover && mapping.to !=seq)
147         {
148           mstart=mapping.to.getStart();
149           mend=mapping.to.getEnd();
150         }
151         mappedRanges = mapList.getToRanges();
152       }
153       else
154       {
155         return false;
156       }
157
158       /*
159        * check that each mapped range lieS with the sequence range
160        * (necessary for circular CDS - example EMBL:J03321:AAA91567)
161        * and mapped length covers (at least) sequence length
162        */
163       int length = 0;
164       for (int[] range : mappedRanges)
165       {
166         int from = Math.min(range[0], range[1]);
167         int to = Math.max(range[0], range[1]);
168         if (from < mstart || to > mend)
169         {
170           return false;
171         }
172         length += (to - from + 1);
173       }
174       // add 1 to mapped length to allow for a mapped stop codon
175       if (length + 1 < (mend - mstart + 1))
176       {
177         return false;
178       }
179       return true;
180     }
181   }
182
183   private List<SequenceToSequenceMapping> mappings;
184
185   /**
186    * Constructor
187    */
188   public AlignedCodonFrame()
189   {
190     mappings = new ArrayList<>();
191   }
192
193   /**
194    * Adds a mapping between the dataset sequences for the associated dna and
195    * protein sequence objects
196    * 
197    * @param dnaseq
198    * @param aaseq
199    * @param map
200    */
201   public void addMap(SequenceI dnaseq, SequenceI aaseq, MapList map)
202   {
203     addMap(dnaseq, aaseq, map, null);
204   }
205
206   /**
207    * Adds a mapping between the dataset sequences for the associated dna and
208    * protein sequence objects
209    * 
210    * @param dnaseq
211    * @param aaseq
212    * @param map
213    * @param mapFromId
214    */
215   public void addMap(SequenceI dnaseq, SequenceI aaseq, MapList map,
216           String mapFromId)
217   {
218     // JBPNote DEBUG! THIS !
219     // dnaseq.transferAnnotation(aaseq, mp);
220     // aaseq.transferAnnotation(dnaseq, new Mapping(map.getInverse()));
221
222     SequenceI fromSeq = (dnaseq.getDatasetSequence() == null) ? dnaseq
223             : dnaseq.getDatasetSequence();
224     SequenceI toSeq = (aaseq.getDatasetSequence() == null) ? aaseq
225             : aaseq.getDatasetSequence();
226
227     /*
228      * if we already hold a mapping between these sequences, just add to it 
229      * note that 'adding' a duplicate map does nothing; this protects against
230      * creating duplicate mappings in AlignedCodonFrame
231      */
232     for (SequenceToSequenceMapping ssm : mappings)
233     {
234       if (ssm.fromSeq == fromSeq && ssm.mapping.to == toSeq)
235       {
236         ssm.mapping.map.addMapList(map);
237         return;
238       }
239     }
240
241     /*
242      * otherwise, add a new sequence mapping
243      */
244     Mapping mp = new Mapping(toSeq, map);
245     mp.setMappedFromId(mapFromId);
246     mappings.add(new SequenceToSequenceMapping(fromSeq, mp));
247   }
248
249   public SequenceI[] getdnaSeqs()
250   {
251     // TODO return a list instead?
252     // return dnaSeqs;
253     List<SequenceI> seqs = new ArrayList<>();
254     for (SequenceToSequenceMapping ssm : mappings)
255     {
256       seqs.add(ssm.fromSeq);
257     }
258     return seqs.toArray(new SequenceI[seqs.size()]);
259   }
260
261   public SequenceI[] getAaSeqs()
262   {
263     // TODO not used - remove?
264     List<SequenceI> seqs = new ArrayList<>();
265     for (SequenceToSequenceMapping ssm : mappings)
266     {
267       seqs.add(ssm.mapping.to);
268     }
269     return seqs.toArray(new SequenceI[seqs.size()]);
270   }
271
272   public MapList[] getdnaToProt()
273   {
274     List<MapList> maps = new ArrayList<>();
275     for (SequenceToSequenceMapping ssm : mappings)
276     {
277       maps.add(ssm.mapping.map);
278     }
279     return maps.toArray(new MapList[maps.size()]);
280   }
281
282   public Mapping[] getProtMappings()
283   {
284     List<Mapping> maps = new ArrayList<>();
285     for (SequenceToSequenceMapping ssm : mappings)
286     {
287       maps.add(ssm.mapping);
288     }
289     return maps.toArray(new Mapping[maps.size()]);
290   }
291
292   /**
293    * Returns the first mapping found which is to or from the given sequence, or
294    * null if none is found
295    * 
296    * @param seq
297    * @return
298    */
299   public Mapping getMappingForSequence(SequenceI seq)
300   {
301     SequenceI seqDs = seq.getDatasetSequence();
302     seqDs = seqDs != null ? seqDs : seq;
303
304     for (SequenceToSequenceMapping ssm : mappings)
305     {
306       if (ssm.fromSeq == seqDs || ssm.mapping.to == seqDs)
307       {
308         return ssm.mapping;
309       }
310     }
311     return null;
312   }
313
314   /**
315    * Return the corresponding aligned or dataset aa sequence for given dna
316    * sequence, null if not found.
317    * 
318    * @param sequenceRef
319    * @return
320    */
321   public SequenceI getAaForDnaSeq(SequenceI dnaSeqRef)
322   {
323     SequenceI dnads = dnaSeqRef.getDatasetSequence();
324     for (SequenceToSequenceMapping ssm : mappings)
325     {
326       if (ssm.fromSeq == dnaSeqRef || ssm.fromSeq == dnads)
327       {
328         return ssm.mapping.to;
329       }
330     }
331     return null;
332   }
333
334   /**
335    * Return the corresponding aligned or dataset dna sequence for given amino
336    * acid sequence, or null if not found. returns the sequence from the first
337    * mapping found that involves the protein sequence.
338    * 
339    * @param aaSeqRef
340    * @return
341    */
342   public SequenceI getDnaForAaSeq(SequenceI aaSeqRef)
343   {
344     SequenceI aads = aaSeqRef.getDatasetSequence();
345     for (SequenceToSequenceMapping ssm : mappings)
346     {
347       if (ssm.mapping.to == aaSeqRef || ssm.mapping.to == aads)
348       {
349         return ssm.fromSeq;
350       }
351     }
352     return null;
353   }
354
355   /**
356    * test to see if codon frame involves seq in any way
357    * 
358    * @param seq
359    *          a nucleotide or protein sequence
360    * @return true if a mapping exists to or from this sequence to any translated
361    *         sequence
362    */
363   public boolean involvesSequence(SequenceI seq)
364   {
365     return getAaForDnaSeq(seq) != null || getDnaForAaSeq(seq) != null;
366   }
367
368   /**
369    * Add search results for regions in other sequences that translate or are
370    * translated from a particular position in seq
371    * 
372    * @param seq
373    * @param index
374    *          position in seq
375    * @param results
376    *          where highlighted regions go
377    */
378   public void markMappedRegion(SequenceI seq, int index,
379           SearchResultsI results)
380   {
381     int[] codon;
382     SequenceI ds = seq.getDatasetSequence();
383     for (SequenceToSequenceMapping ssm : mappings)
384     {
385       if (ssm.fromSeq == seq || ssm.fromSeq == ds)
386       {
387         codon = ssm.mapping.map.locateInTo(index, index);
388         if (codon != null)
389         {
390           for (int i = 0; i < codon.length; i += 2)
391           {
392             results.addResult(ssm.mapping.to, codon[i], codon[i + 1]);
393           }
394         }
395       }
396       else if (ssm.mapping.to == seq || ssm.mapping.to == ds)
397       {
398         {
399           codon = ssm.mapping.map.locateInFrom(index, index);
400           if (codon != null)
401           {
402             for (int i = 0; i < codon.length; i += 2)
403             {
404               results.addResult(ssm.fromSeq, codon[i], codon[i + 1]);
405             }
406           }
407         }
408       }
409     }
410   }
411
412   /**
413    * Returns the DNA codon positions (base 1) for the given position (base 1) in
414    * a mapped protein sequence, or null if no mapping is found.
415    * 
416    * Intended for use in aligning cDNA to match aligned protein. Only the first
417    * mapping found is returned, so not suitable for use if multiple protein
418    * sequences are mapped to the same cDNA (but aligning cDNA as protein is
419    * ill-defined for this case anyway).
420    * 
421    * @param seq
422    *          the DNA dataset sequence
423    * @param aaPos
424    *          residue position (base 1) in a protein sequence
425    * @return
426    */
427   public int[] getDnaPosition(SequenceI seq, int aaPos)
428   {
429     /*
430      * Adapted from markMappedRegion().
431      */
432     MapList ml = null;
433     int i = 0;
434     for (SequenceToSequenceMapping ssm : mappings)
435     {
436       if (ssm.fromSeq == seq)
437       {
438         ml = getdnaToProt()[i];
439         break;
440       }
441       i++;
442     }
443     return ml == null ? null : ml.locateInFrom(aaPos, aaPos);
444   }
445
446   /**
447    * Convenience method to return the first aligned sequence in the given
448    * alignment whose dataset has a mapping with the given (aligned or dataset)
449    * sequence.
450    * 
451    * @param seq
452    * 
453    * @param al
454    * @return
455    */
456   public SequenceI findAlignedSequence(SequenceI seq, AlignmentI al)
457   {
458     return findAlignedSequence(seq, al, null);
459   }
460   /**
461    * Convenience method to return the first aligned sequence in the given
462    * alignment whose dataset has a mapping with the given (aligned or dataset)
463    * sequence, and optionally the mapping that relates them 
464    * 
465    * @param seq
466    * @param al
467    * @param map - list to add the mapping to
468    * @return sequence from al that maps to seq
469    */
470   public SequenceI findAlignedSequence(SequenceI seq, AlignmentI al,List<SequenceToSequenceMapping> map)
471   {
472     /*
473      * Search mapped protein ('to') sequences first.
474      */
475     for (SequenceToSequenceMapping ssm : mappings)
476     {
477       int mStart=ssm.getMapping().getMap().getFromLowest(),mEnd=ssm.getMapping().map.getFromHighest();
478       if ((ssm.fromSeq == seq || ssm.fromSeq == seq.getDatasetSequence())
479               && seq.getStart()>=mStart && seq.getEnd()<=mEnd)
480       {
481         for (SequenceI sourceAligned : al.getSequences())
482         {
483           if (ssm.covers(sourceAligned,true))
484           {
485             if (map != null)
486             {
487               map.add(ssm);
488             }
489             return sourceAligned;
490           }
491         }
492       }
493     }
494
495     /*
496      * Then try mapped dna sequences.
497      */
498     for (SequenceToSequenceMapping ssm : mappings)
499     {
500       int mStart=ssm.getMapping().getMap().getToLowest(),mEnd=ssm.getMapping().map.getToHighest();
501       if ((ssm.mapping.to == seq
502               || ssm.mapping.to == seq.getDatasetSequence())
503               && seq.getStart()>=mStart && seq.getEnd()<=mEnd)
504       {
505         for (SequenceI sourceAligned : al.getSequences())
506         {
507           if (ssm.covers(sourceAligned,true))
508           {
509             if (map != null)
510             {
511               map.add(ssm);
512             }
513             return sourceAligned;
514           }
515         }
516       }
517     }
518
519     return null;
520   }
521
522   /**
523    * Returns the region in the target sequence's dataset that is mapped to the
524    * given position (base 1) in the query sequence's dataset. The region is a
525    * set of start/end position pairs.
526    * 
527    * @param target
528    * @param query
529    * @param queryPos
530    * @return
531    */
532   public int[] getMappedRegion(SequenceI target, SequenceI query,
533           int queryPos)
534   {
535     SequenceI targetDs = target.getDatasetSequence() == null ? target
536             : target.getDatasetSequence();
537     SequenceI queryDs = query.getDatasetSequence() == null ? query
538             : query.getDatasetSequence();
539     if (targetDs == null || queryDs == null /*|| dnaToProt == null*/)
540     {
541       return null;
542     }
543     for (SequenceToSequenceMapping ssm : mappings)
544     {
545       /*
546        * try mapping from target to query
547        */
548       if (ssm.fromSeq == targetDs && ssm.mapping.to == queryDs)
549       {
550         int[] codon = ssm.mapping.map.locateInFrom(queryPos, queryPos);
551         if (codon != null)
552         {
553           return codon;
554         }
555       }
556       /*
557        * else try mapping from query to target
558        */
559       else if (ssm.fromSeq == queryDs && ssm.mapping.to == targetDs)
560       {
561         int[] codon = ssm.mapping.map.locateInTo(queryPos, queryPos);
562         if (codon != null)
563         {
564           return codon;
565         }
566       }
567     }
568     return null;
569   }
570
571   /**
572    * Returns the mapped DNA codons for the given position in a protein sequence,
573    * or null if no mapping is found. Returns a list of (e.g.) ['g', 'c', 't']
574    * codons. There may be more than one codon mapped to the protein if (for
575    * example), there are mappings to cDNA variants.
576    * 
577    * @param protein
578    *          the peptide dataset sequence
579    * @param aaPos
580    *          residue position (base 1) in the peptide sequence
581    * @return
582    */
583   public List<char[]> getMappedCodons(SequenceI protein, int aaPos)
584   {
585     MapList ml = null;
586     SequenceI dnaSeq = null;
587     List<char[]> result = new ArrayList<>();
588
589     for (SequenceToSequenceMapping ssm : mappings)
590     {
591       if (ssm.mapping.to == protein
592               && ssm.mapping.getMap().getFromRatio() == 3)
593       {
594         ml = ssm.mapping.map;
595         dnaSeq = ssm.fromSeq;
596
597         int[] codonPos = ml.locateInFrom(aaPos, aaPos);
598         if (codonPos == null)
599         {
600           return null;
601         }
602
603         /*
604          * Read off the mapped nucleotides (converting to position base 0)
605          */
606         codonPos = MappingUtils.flattenRanges(codonPos);
607         int start = dnaSeq.getStart();
608         char c1 = dnaSeq.getCharAt(codonPos[0] - start);
609         char c2 = dnaSeq.getCharAt(codonPos[1] - start);
610         char c3 = dnaSeq.getCharAt(codonPos[2] - start);
611         result.add(new char[] { c1, c2, c3 });
612       }
613     }
614     return result.isEmpty() ? null : result;
615   }
616
617   /**
618    * Returns any mappings found which are from the given sequence, and to
619    * distinct sequences.
620    * 
621    * @param seq
622    * @return
623    */
624   public List<Mapping> getMappingsFromSequence(SequenceI seq)
625   {
626     List<Mapping> result = new ArrayList<>();
627     List<SequenceI> related = new ArrayList<>();
628     SequenceI seqDs = seq.getDatasetSequence();
629     seqDs = seqDs != null ? seqDs : seq;
630
631     for (SequenceToSequenceMapping ssm : mappings)
632     {
633       final Mapping mapping = ssm.mapping;
634       if (ssm.fromSeq == seqDs)
635       {
636         if (!related.contains(mapping.to))
637         {
638           result.add(mapping);
639           related.add(mapping.to);
640         }
641       }
642     }
643     return result;
644   }
645
646   /**
647    * Test whether the given sequence is substitutable for one or more dummy
648    * sequences in this mapping
649    * 
650    * @param map
651    * @param seq
652    * @return
653    */
654   public boolean isRealisableWith(SequenceI seq)
655   {
656     return realiseWith(seq, false) > 0;
657   }
658
659   /**
660    * Replace any matchable mapped dummy sequences with the given real one.
661    * Returns the count of sequence mappings instantiated.
662    * 
663    * @param seq
664    * @return
665    */
666   public int realiseWith(SequenceI seq)
667   {
668     return realiseWith(seq, true);
669   }
670
671   /**
672    * Returns the number of mapped dummy sequences that could be replaced with
673    * the given real sequence.
674    * 
675    * @param seq
676    *          a dataset sequence
677    * @param doUpdate
678    *          if true, performs replacements, else only counts
679    * @return
680    */
681   protected int realiseWith(SequenceI seq, boolean doUpdate)
682   {
683     SequenceI ds = seq.getDatasetSequence() != null
684             ? seq.getDatasetSequence()
685             : seq;
686     int count = 0;
687
688     /*
689      * check for replaceable DNA ('map from') sequences
690      */
691     for (SequenceToSequenceMapping ssm : mappings)
692     {
693       SequenceI dna = ssm.fromSeq;
694       if (dna instanceof SequenceDummy
695               && dna.getName().equals(ds.getName()))
696       {
697         Mapping mapping = ssm.mapping;
698         int mapStart = mapping.getMap().getFromLowest();
699         int mapEnd = mapping.getMap().getFromHighest();
700         boolean mappable = couldRealiseSequence(dna, ds, mapStart, mapEnd);
701         if (mappable)
702         {
703           count++;
704           if (doUpdate)
705           {
706             // TODO: new method ? ds.realise(dna);
707             // might want to copy database refs as well
708             ds.setSequenceFeatures(dna.getSequenceFeatures());
709             // dnaSeqs[i] = ds;
710             ssm.fromSeq = ds;
711             System.out.println("Realised mapped sequence " + ds.getName());
712           }
713         }
714       }
715
716       /*
717        * check for replaceable protein ('map to') sequences
718        */
719       Mapping mapping = ssm.mapping;
720       SequenceI prot = mapping.getTo();
721       int mapStart = mapping.getMap().getToLowest();
722       int mapEnd = mapping.getMap().getToHighest();
723       boolean mappable = couldRealiseSequence(prot, ds, mapStart, mapEnd);
724       if (mappable)
725       {
726         count++;
727         if (doUpdate)
728         {
729           // TODO: new method ? ds.realise(dna);
730           // might want to copy database refs as well
731           ds.setSequenceFeatures(dna.getSequenceFeatures());
732           ssm.mapping.setTo(ds);
733         }
734       }
735     }
736     return count;
737   }
738
739   /**
740    * Helper method to test whether a 'real' sequence could replace a 'dummy'
741    * sequence in the map. The criteria are that they have the same name, and
742    * that the mapped region overlaps the candidate sequence.
743    * 
744    * @param existing
745    * @param replacement
746    * @param mapStart
747    * @param mapEnd
748    * @return
749    */
750   protected static boolean couldRealiseSequence(SequenceI existing,
751           SequenceI replacement, int mapStart, int mapEnd)
752   {
753     if (existing instanceof SequenceDummy
754             && !(replacement instanceof SequenceDummy)
755             && existing.getName().equals(replacement.getName()))
756     {
757       int start = replacement.getStart();
758       int end = replacement.getEnd();
759       boolean mappingOverlapsSequence = (mapStart >= start
760               && mapStart <= end) || (mapEnd >= start && mapEnd <= end);
761       if (mappingOverlapsSequence)
762       {
763         return true;
764       }
765     }
766     return false;
767   }
768
769   /**
770    * Change any mapping to the given sequence to be to its dataset sequence
771    * instead. For use when mappings are created before their referenced
772    * sequences are instantiated, for example when parsing GFF data.
773    * 
774    * @param seq
775    */
776   public void updateToDataset(SequenceI seq)
777   {
778     if (seq == null || seq.getDatasetSequence() == null)
779     {
780       return;
781     }
782     SequenceI ds = seq.getDatasetSequence();
783
784     for (SequenceToSequenceMapping ssm : mappings)
785     /*
786      * 'from' sequences
787      */
788     {
789       if (ssm.fromSeq == seq)
790       {
791         ssm.fromSeq = ds;
792       }
793
794       /*
795        * 'to' sequences
796        */
797       if (ssm.mapping.to == seq)
798       {
799         ssm.mapping.to = ds;
800       }
801     }
802   }
803
804   /**
805    * Answers true if this object contains no mappings
806    * 
807    * @return
808    */
809   public boolean isEmpty()
810   {
811     return mappings.isEmpty();
812   }
813
814   /**
815    * Method for debug / inspection purposes only, may change in future
816    */
817   @Override
818   public String toString()
819   {
820     return mappings == null ? "null" : mappings.toString();
821   }
822
823   /**
824    * Returns the first mapping found that is between 'fromSeq' and 'toSeq', or
825    * null if none found
826    * 
827    * @param fromSeq
828    *          aligned or dataset sequence
829    * @param toSeq
830    *          aligned or dataset sequence
831    * @return
832    */
833   public Mapping getMappingBetween(SequenceI fromSeq, SequenceI toSeq)
834   {
835     SequenceI dssFrom = fromSeq.getDatasetSequence() == null ? fromSeq
836             : fromSeq.getDatasetSequence();
837     SequenceI dssTo = toSeq.getDatasetSequence() == null ? toSeq
838             : toSeq.getDatasetSequence();
839
840     for (SequenceToSequenceMapping mapping : mappings)
841     {
842       SequenceI from = mapping.fromSeq;
843       SequenceI to = mapping.mapping.to;
844       if ((from == dssFrom && to == dssTo)
845               || (from == dssTo && to == dssFrom))
846       {
847         return mapping.mapping;
848       }
849     }
850     return null;
851   }
852
853   /**
854    * Returns a hashcode derived from the list of sequence mappings
855    * 
856    * @see SequenceToSequenceMapping#hashCode()
857    * @see AbstractList#hashCode()
858    */
859   @Override
860   public int hashCode()
861   {
862     return this.mappings.hashCode();
863   }
864
865   /**
866    * Two AlignedCodonFrame objects are equal if they hold the same ordered list
867    * of mappings
868    * 
869    * @see SequenceToSequenceMapping#equals
870    */
871   @Override
872   public boolean equals(Object obj)
873   {
874     if (!(obj instanceof AlignedCodonFrame))
875     {
876       return false;
877     }
878     return this.mappings.equals(((AlignedCodonFrame) obj).mappings);
879   }
880
881   public List<SequenceToSequenceMapping> getMappings()
882   {
883     return mappings;
884   }
885
886   /**
887    * Returns the first mapping found which is between the two given sequences,
888    * and covers the full extent of both.
889    * 
890    * @param seq1
891    * @param seq2
892    * @return
893    */
894   public SequenceToSequenceMapping getCoveringMapping(SequenceI seq1,
895           SequenceI seq2)
896   {
897     for (SequenceToSequenceMapping mapping : mappings)
898     {
899       if (mapping.covers(seq2) && mapping.covers(seq1))
900       {
901         return mapping;
902       }
903     }
904     return null;
905   }
906 }