d1b12d3d96e2e9f4f5507d48ecc29e9c37c4a9cd
[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       if (ssm.fromSeq == seq || ssm.fromSeq == seq.getDatasetSequence())
478       {
479         for (SequenceI sourceAligned : al.getSequences())
480         {
481           if (ssm.covers(sourceAligned,true))
482           {
483             if (map != null)
484             {
485               map.add(ssm);
486             }
487             return sourceAligned;
488           }
489         }
490       }
491     }
492
493     /*
494      * Then try mapped dna sequences.
495      */
496     for (SequenceToSequenceMapping ssm : mappings)
497     {
498       if (ssm.mapping.to == seq
499               || ssm.mapping.to == seq.getDatasetSequence())
500       {
501         for (SequenceI sourceAligned : al.getSequences())
502         {
503           if (ssm.covers(sourceAligned,true))
504           {
505             if (map != null)
506             {
507               map.add(ssm);
508             }
509             return sourceAligned;
510           }
511         }
512       }
513     }
514
515     return null;
516   }
517
518   /**
519    * Returns the region in the target sequence's dataset that is mapped to the
520    * given position (base 1) in the query sequence's dataset. The region is a
521    * set of start/end position pairs.
522    * 
523    * @param target
524    * @param query
525    * @param queryPos
526    * @return
527    */
528   public int[] getMappedRegion(SequenceI target, SequenceI query,
529           int queryPos)
530   {
531     SequenceI targetDs = target.getDatasetSequence() == null ? target
532             : target.getDatasetSequence();
533     SequenceI queryDs = query.getDatasetSequence() == null ? query
534             : query.getDatasetSequence();
535     if (targetDs == null || queryDs == null /*|| dnaToProt == null*/)
536     {
537       return null;
538     }
539     for (SequenceToSequenceMapping ssm : mappings)
540     {
541       /*
542        * try mapping from target to query
543        */
544       if (ssm.fromSeq == targetDs && ssm.mapping.to == queryDs)
545       {
546         int[] codon = ssm.mapping.map.locateInFrom(queryPos, queryPos);
547         if (codon != null)
548         {
549           return codon;
550         }
551       }
552       /*
553        * else try mapping from query to target
554        */
555       else if (ssm.fromSeq == queryDs && ssm.mapping.to == targetDs)
556       {
557         int[] codon = ssm.mapping.map.locateInTo(queryPos, queryPos);
558         if (codon != null)
559         {
560           return codon;
561         }
562       }
563     }
564     return null;
565   }
566
567   /**
568    * Returns the mapped DNA codons for the given position in a protein sequence,
569    * or null if no mapping is found. Returns a list of (e.g.) ['g', 'c', 't']
570    * codons. There may be more than one codon mapped to the protein if (for
571    * example), there are mappings to cDNA variants.
572    * 
573    * @param protein
574    *          the peptide dataset sequence
575    * @param aaPos
576    *          residue position (base 1) in the peptide sequence
577    * @return
578    */
579   public List<char[]> getMappedCodons(SequenceI protein, int aaPos)
580   {
581     MapList ml = null;
582     SequenceI dnaSeq = null;
583     List<char[]> result = new ArrayList<>();
584
585     for (SequenceToSequenceMapping ssm : mappings)
586     {
587       if (ssm.mapping.to == protein
588               && ssm.mapping.getMap().getFromRatio() == 3)
589       {
590         ml = ssm.mapping.map;
591         dnaSeq = ssm.fromSeq;
592
593         int[] codonPos = ml.locateInFrom(aaPos, aaPos);
594         if (codonPos == null)
595         {
596           return null;
597         }
598
599         /*
600          * Read off the mapped nucleotides (converting to position base 0)
601          */
602         codonPos = MappingUtils.flattenRanges(codonPos);
603         int start = dnaSeq.getStart();
604         char c1 = dnaSeq.getCharAt(codonPos[0] - start);
605         char c2 = dnaSeq.getCharAt(codonPos[1] - start);
606         char c3 = dnaSeq.getCharAt(codonPos[2] - start);
607         result.add(new char[] { c1, c2, c3 });
608       }
609     }
610     return result.isEmpty() ? null : result;
611   }
612
613   /**
614    * Returns any mappings found which are from the given sequence, and to
615    * distinct sequences.
616    * 
617    * @param seq
618    * @return
619    */
620   public List<Mapping> getMappingsFromSequence(SequenceI seq)
621   {
622     List<Mapping> result = new ArrayList<>();
623     List<SequenceI> related = new ArrayList<>();
624     SequenceI seqDs = seq.getDatasetSequence();
625     seqDs = seqDs != null ? seqDs : seq;
626
627     for (SequenceToSequenceMapping ssm : mappings)
628     {
629       final Mapping mapping = ssm.mapping;
630       if (ssm.fromSeq == seqDs)
631       {
632         if (!related.contains(mapping.to))
633         {
634           result.add(mapping);
635           related.add(mapping.to);
636         }
637       }
638     }
639     return result;
640   }
641
642   /**
643    * Test whether the given sequence is substitutable for one or more dummy
644    * sequences in this mapping
645    * 
646    * @param map
647    * @param seq
648    * @return
649    */
650   public boolean isRealisableWith(SequenceI seq)
651   {
652     return realiseWith(seq, false) > 0;
653   }
654
655   /**
656    * Replace any matchable mapped dummy sequences with the given real one.
657    * Returns the count of sequence mappings instantiated.
658    * 
659    * @param seq
660    * @return
661    */
662   public int realiseWith(SequenceI seq)
663   {
664     return realiseWith(seq, true);
665   }
666
667   /**
668    * Returns the number of mapped dummy sequences that could be replaced with
669    * the given real sequence.
670    * 
671    * @param seq
672    *          a dataset sequence
673    * @param doUpdate
674    *          if true, performs replacements, else only counts
675    * @return
676    */
677   protected int realiseWith(SequenceI seq, boolean doUpdate)
678   {
679     SequenceI ds = seq.getDatasetSequence() != null
680             ? seq.getDatasetSequence()
681             : seq;
682     int count = 0;
683
684     /*
685      * check for replaceable DNA ('map from') sequences
686      */
687     for (SequenceToSequenceMapping ssm : mappings)
688     {
689       SequenceI dna = ssm.fromSeq;
690       if (dna instanceof SequenceDummy
691               && dna.getName().equals(ds.getName()))
692       {
693         Mapping mapping = ssm.mapping;
694         int mapStart = mapping.getMap().getFromLowest();
695         int mapEnd = mapping.getMap().getFromHighest();
696         boolean mappable = couldRealiseSequence(dna, ds, mapStart, mapEnd);
697         if (mappable)
698         {
699           count++;
700           if (doUpdate)
701           {
702             // TODO: new method ? ds.realise(dna);
703             // might want to copy database refs as well
704             ds.setSequenceFeatures(dna.getSequenceFeatures());
705             // dnaSeqs[i] = ds;
706             ssm.fromSeq = ds;
707             System.out.println("Realised mapped sequence " + ds.getName());
708           }
709         }
710       }
711
712       /*
713        * check for replaceable protein ('map to') sequences
714        */
715       Mapping mapping = ssm.mapping;
716       SequenceI prot = mapping.getTo();
717       int mapStart = mapping.getMap().getToLowest();
718       int mapEnd = mapping.getMap().getToHighest();
719       boolean mappable = couldRealiseSequence(prot, ds, mapStart, mapEnd);
720       if (mappable)
721       {
722         count++;
723         if (doUpdate)
724         {
725           // TODO: new method ? ds.realise(dna);
726           // might want to copy database refs as well
727           ds.setSequenceFeatures(dna.getSequenceFeatures());
728           ssm.mapping.setTo(ds);
729         }
730       }
731     }
732     return count;
733   }
734
735   /**
736    * Helper method to test whether a 'real' sequence could replace a 'dummy'
737    * sequence in the map. The criteria are that they have the same name, and
738    * that the mapped region overlaps the candidate sequence.
739    * 
740    * @param existing
741    * @param replacement
742    * @param mapStart
743    * @param mapEnd
744    * @return
745    */
746   protected static boolean couldRealiseSequence(SequenceI existing,
747           SequenceI replacement, int mapStart, int mapEnd)
748   {
749     if (existing instanceof SequenceDummy
750             && !(replacement instanceof SequenceDummy)
751             && existing.getName().equals(replacement.getName()))
752     {
753       int start = replacement.getStart();
754       int end = replacement.getEnd();
755       boolean mappingOverlapsSequence = (mapStart >= start
756               && mapStart <= end) || (mapEnd >= start && mapEnd <= end);
757       if (mappingOverlapsSequence)
758       {
759         return true;
760       }
761     }
762     return false;
763   }
764
765   /**
766    * Change any mapping to the given sequence to be to its dataset sequence
767    * instead. For use when mappings are created before their referenced
768    * sequences are instantiated, for example when parsing GFF data.
769    * 
770    * @param seq
771    */
772   public void updateToDataset(SequenceI seq)
773   {
774     if (seq == null || seq.getDatasetSequence() == null)
775     {
776       return;
777     }
778     SequenceI ds = seq.getDatasetSequence();
779
780     for (SequenceToSequenceMapping ssm : mappings)
781     /*
782      * 'from' sequences
783      */
784     {
785       if (ssm.fromSeq == seq)
786       {
787         ssm.fromSeq = ds;
788       }
789
790       /*
791        * 'to' sequences
792        */
793       if (ssm.mapping.to == seq)
794       {
795         ssm.mapping.to = ds;
796       }
797     }
798   }
799
800   /**
801    * Answers true if this object contains no mappings
802    * 
803    * @return
804    */
805   public boolean isEmpty()
806   {
807     return mappings.isEmpty();
808   }
809
810   /**
811    * Method for debug / inspection purposes only, may change in future
812    */
813   @Override
814   public String toString()
815   {
816     return mappings == null ? "null" : mappings.toString();
817   }
818
819   /**
820    * Returns the first mapping found that is between 'fromSeq' and 'toSeq', or
821    * null if none found
822    * 
823    * @param fromSeq
824    *          aligned or dataset sequence
825    * @param toSeq
826    *          aligned or dataset sequence
827    * @return
828    */
829   public Mapping getMappingBetween(SequenceI fromSeq, SequenceI toSeq)
830   {
831     SequenceI dssFrom = fromSeq.getDatasetSequence() == null ? fromSeq
832             : fromSeq.getDatasetSequence();
833     SequenceI dssTo = toSeq.getDatasetSequence() == null ? toSeq
834             : toSeq.getDatasetSequence();
835
836     for (SequenceToSequenceMapping mapping : mappings)
837     {
838       SequenceI from = mapping.fromSeq;
839       SequenceI to = mapping.mapping.to;
840       if ((from == dssFrom && to == dssTo)
841               || (from == dssTo && to == dssFrom))
842       {
843         return mapping.mapping;
844       }
845     }
846     return null;
847   }
848
849   /**
850    * Returns a hashcode derived from the list of sequence mappings
851    * 
852    * @see SequenceToSequenceMapping#hashCode()
853    * @see AbstractList#hashCode()
854    */
855   @Override
856   public int hashCode()
857   {
858     return this.mappings.hashCode();
859   }
860
861   /**
862    * Two AlignedCodonFrame objects are equal if they hold the same ordered list
863    * of mappings
864    * 
865    * @see SequenceToSequenceMapping#equals
866    */
867   @Override
868   public boolean equals(Object obj)
869   {
870     if (!(obj instanceof AlignedCodonFrame))
871     {
872       return false;
873     }
874     return this.mappings.equals(((AlignedCodonFrame) obj).mappings);
875   }
876
877   public List<SequenceToSequenceMapping> getMappings()
878   {
879     return mappings;
880   }
881
882   /**
883    * Returns the first mapping found which is between the two given sequences,
884    * and covers the full extent of both.
885    * 
886    * @param seq1
887    * @param seq2
888    * @return
889    */
890   public SequenceToSequenceMapping getCoveringMapping(SequenceI seq1,
891           SequenceI seq2)
892   {
893     for (SequenceToSequenceMapping mapping : mappings)
894     {
895       if (mapping.covers(seq2) && mapping.covers(seq1))
896       {
897         return mapping;
898       }
899     }
900     return null;
901   }
902 }