128bc5c8e994369b950840d62d35f0cb093546f0
[jalview.git] / test / jalview / analysis / AlignmentUtilsTests.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.analysis;
22
23 import static org.testng.AssertJUnit.assertEquals;
24 import static org.testng.AssertJUnit.assertFalse;
25 import static org.testng.AssertJUnit.assertNotNull;
26 import static org.testng.AssertJUnit.assertNull;
27 import static org.testng.AssertJUnit.assertSame;
28 import static org.testng.AssertJUnit.assertTrue;
29
30 import jalview.analysis.AlignmentUtils.DnaVariant;
31 import jalview.datamodel.AlignedCodonFrame;
32 import jalview.datamodel.Alignment;
33 import jalview.datamodel.AlignmentAnnotation;
34 import jalview.datamodel.AlignmentI;
35 import jalview.datamodel.Annotation;
36 import jalview.datamodel.DBRefEntry;
37 import jalview.datamodel.GeneLociI;
38 import jalview.datamodel.Mapping;
39 import jalview.datamodel.SearchResultMatchI;
40 import jalview.datamodel.SearchResultsI;
41 import jalview.datamodel.Sequence;
42 import jalview.datamodel.SequenceFeature;
43 import jalview.datamodel.SequenceI;
44 import jalview.datamodel.features.SequenceFeatures;
45 import jalview.gui.JvOptionPane;
46 import jalview.io.AppletFormatAdapter;
47 import jalview.io.DataSourceType;
48 import jalview.io.FileFormat;
49 import jalview.io.FileFormatI;
50 import jalview.io.FormatAdapter;
51 import jalview.io.gff.SequenceOntologyI;
52 import jalview.util.MapList;
53 import jalview.util.MappingUtils;
54
55 import java.io.IOException;
56 import java.util.ArrayList;
57 import java.util.Arrays;
58 import java.util.LinkedHashMap;
59 import java.util.List;
60 import java.util.Map;
61 import java.util.TreeMap;
62
63 import org.testng.annotations.BeforeClass;
64 import org.testng.annotations.Test;
65
66 public class AlignmentUtilsTests
67 {
68   private static Sequence ts = new Sequence("short",
69           "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklm");
70
71   @BeforeClass(alwaysRun = true)
72   public void setUpJvOptionPane()
73   {
74     JvOptionPane.setInteractiveMode(false);
75     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
76   }
77
78   @Test(groups = { "Functional" })
79   public void testExpandContext()
80   {
81     AlignmentI al = new Alignment(new Sequence[] {});
82     for (int i = 4; i < 14; i += 2)
83     {
84       SequenceI s1 = ts.deriveSequence().getSubSequence(i, i + 7);
85       al.addSequence(s1);
86     }
87     System.out.println(new AppletFormatAdapter().formatSequences(
88             FileFormat.Clustal,
89             al, true));
90     for (int flnk = -1; flnk < 25; flnk++)
91     {
92       AlignmentI exp = AlignmentUtils.expandContext(al, flnk);
93       System.out.println("\nFlank size: " + flnk);
94       System.out.println(new AppletFormatAdapter().formatSequences(
95               FileFormat.Clustal, exp, true));
96       if (flnk == -1)
97       {
98         /*
99          * Full expansion to complete sequences
100          */
101         for (SequenceI sq : exp.getSequences())
102         {
103           String ung = sq.getSequenceAsString().replaceAll("-+", "");
104           final String errorMsg = "Flanking sequence not the same as original dataset sequence.\n"
105                   + ung
106                   + "\n"
107                   + sq.getDatasetSequence().getSequenceAsString();
108           assertTrue(errorMsg, ung.equalsIgnoreCase(sq.getDatasetSequence()
109                   .getSequenceAsString()));
110         }
111       }
112       else if (flnk == 24)
113       {
114         /*
115          * Last sequence is fully expanded, others have leading gaps to match
116          */
117         assertTrue(exp.getSequenceAt(4).getSequenceAsString()
118                 .startsWith("abc"));
119         assertTrue(exp.getSequenceAt(3).getSequenceAsString()
120                 .startsWith("--abc"));
121         assertTrue(exp.getSequenceAt(2).getSequenceAsString()
122                 .startsWith("----abc"));
123         assertTrue(exp.getSequenceAt(1).getSequenceAsString()
124                 .startsWith("------abc"));
125         assertTrue(exp.getSequenceAt(0).getSequenceAsString()
126                 .startsWith("--------abc"));
127       }
128     }
129   }
130
131   /**
132    * Test that annotations are correctly adjusted by expandContext
133    */
134   @Test(groups = { "Functional" })
135   public void testExpandContext_annotation()
136   {
137     AlignmentI al = new Alignment(new Sequence[] {});
138     SequenceI ds = new Sequence("Seq1", "ABCDEFGHI");
139     // subsequence DEF:
140     SequenceI seq1 = ds.deriveSequence().getSubSequence(3, 6);
141     al.addSequence(seq1);
142
143     /*
144      * Annotate DEF with 4/5/6 respectively
145      */
146     Annotation[] anns = new Annotation[] { new Annotation(4),
147         new Annotation(5), new Annotation(6) };
148     AlignmentAnnotation ann = new AlignmentAnnotation("SS",
149             "secondary structure", anns);
150     seq1.addAlignmentAnnotation(ann);
151
152     /*
153      * The annotations array should match aligned positions
154      */
155     assertEquals(3, ann.annotations.length);
156     assertEquals(4, ann.annotations[0].value, 0.001);
157     assertEquals(5, ann.annotations[1].value, 0.001);
158     assertEquals(6, ann.annotations[2].value, 0.001);
159
160     /*
161      * Check annotation to sequence position mappings before expanding the
162      * sequence; these are set up in Sequence.addAlignmentAnnotation ->
163      * Annotation.setSequenceRef -> createSequenceMappings
164      */
165     assertNull(ann.getAnnotationForPosition(1));
166     assertNull(ann.getAnnotationForPosition(2));
167     assertNull(ann.getAnnotationForPosition(3));
168     assertEquals(4, ann.getAnnotationForPosition(4).value, 0.001);
169     assertEquals(5, ann.getAnnotationForPosition(5).value, 0.001);
170     assertEquals(6, ann.getAnnotationForPosition(6).value, 0.001);
171     assertNull(ann.getAnnotationForPosition(7));
172     assertNull(ann.getAnnotationForPosition(8));
173     assertNull(ann.getAnnotationForPosition(9));
174
175     /*
176      * Expand the subsequence to the full sequence abcDEFghi
177      */
178     AlignmentI expanded = AlignmentUtils.expandContext(al, -1);
179     assertEquals("abcDEFghi", expanded.getSequenceAt(0)
180             .getSequenceAsString());
181
182     /*
183      * Confirm the alignment and sequence have the same SS annotation,
184      * referencing the expanded sequence
185      */
186     ann = expanded.getSequenceAt(0).getAnnotation()[0];
187     assertSame(ann, expanded.getAlignmentAnnotation()[0]);
188     assertSame(expanded.getSequenceAt(0), ann.sequenceRef);
189
190     /*
191      * The annotations array should have null values except for annotated
192      * positions
193      */
194     assertNull(ann.annotations[0]);
195     assertNull(ann.annotations[1]);
196     assertNull(ann.annotations[2]);
197     assertEquals(4, ann.annotations[3].value, 0.001);
198     assertEquals(5, ann.annotations[4].value, 0.001);
199     assertEquals(6, ann.annotations[5].value, 0.001);
200     assertNull(ann.annotations[6]);
201     assertNull(ann.annotations[7]);
202     assertNull(ann.annotations[8]);
203
204     /*
205      * sequence position mappings should be unchanged
206      */
207     assertNull(ann.getAnnotationForPosition(1));
208     assertNull(ann.getAnnotationForPosition(2));
209     assertNull(ann.getAnnotationForPosition(3));
210     assertEquals(4, ann.getAnnotationForPosition(4).value, 0.001);
211     assertEquals(5, ann.getAnnotationForPosition(5).value, 0.001);
212     assertEquals(6, ann.getAnnotationForPosition(6).value, 0.001);
213     assertNull(ann.getAnnotationForPosition(7));
214     assertNull(ann.getAnnotationForPosition(8));
215     assertNull(ann.getAnnotationForPosition(9));
216   }
217
218   /**
219    * Test method that returns a map of lists of sequences by sequence name.
220    * 
221    * @throws IOException
222    */
223   @Test(groups = { "Functional" })
224   public void testGetSequencesByName() throws IOException
225   {
226     final String data = ">Seq1Name\nKQYL\n" + ">Seq2Name\nRFPW\n"
227             + ">Seq1Name\nABCD\n";
228     AlignmentI al = loadAlignment(data, FileFormat.Fasta);
229     Map<String, List<SequenceI>> map = AlignmentUtils
230             .getSequencesByName(al);
231     assertEquals(2, map.keySet().size());
232     assertEquals(2, map.get("Seq1Name").size());
233     assertEquals("KQYL", map.get("Seq1Name").get(0).getSequenceAsString());
234     assertEquals("ABCD", map.get("Seq1Name").get(1).getSequenceAsString());
235     assertEquals(1, map.get("Seq2Name").size());
236     assertEquals("RFPW", map.get("Seq2Name").get(0).getSequenceAsString());
237   }
238
239   /**
240    * Helper method to load an alignment and ensure dataset sequences are set up.
241    * 
242    * @param data
243    * @param format
244    *          TODO
245    * @return
246    * @throws IOException
247    */
248   protected AlignmentI loadAlignment(final String data, FileFormatI format)
249           throws IOException
250   {
251     AlignmentI a = new FormatAdapter().readFile(data,
252             DataSourceType.PASTE, format);
253     a.setDataset(null);
254     return a;
255   }
256
257   /**
258    * Test mapping of protein to cDNA, for the case where we have no sequence
259    * cross-references, so mappings are made first-served 1-1 where sequences
260    * translate.
261    * 
262    * @throws IOException
263    */
264   @Test(groups = { "Functional" })
265   public void testMapProteinAlignmentToCdna_noXrefs() throws IOException
266   {
267     List<SequenceI> protseqs = new ArrayList<>();
268     protseqs.add(new Sequence("UNIPROT|V12345", "EIQ"));
269     protseqs.add(new Sequence("UNIPROT|V12346", "EIQ"));
270     protseqs.add(new Sequence("UNIPROT|V12347", "SAR"));
271     AlignmentI protein = new Alignment(protseqs.toArray(new SequenceI[3]));
272     protein.setDataset(null);
273
274     List<SequenceI> dnaseqs = new ArrayList<>();
275     dnaseqs.add(new Sequence("EMBL|A11111", "TCAGCACGC")); // = SAR
276     dnaseqs.add(new Sequence("EMBL|A22222", "GAGATACAA")); // = EIQ
277     dnaseqs.add(new Sequence("EMBL|A33333", "GAAATCCAG")); // = EIQ
278     dnaseqs.add(new Sequence("EMBL|A44444", "GAAATTCAG")); // = EIQ
279     AlignmentI cdna = new Alignment(dnaseqs.toArray(new SequenceI[4]));
280     cdna.setDataset(null);
281
282     assertTrue(AlignmentUtils.mapProteinAlignmentToCdna(protein, cdna));
283
284     // 3 mappings made, each from 1 to 1 sequence
285     assertEquals(3, protein.getCodonFrames().size());
286     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(0)).size());
287     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(1)).size());
288     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(2)).size());
289
290     // V12345 mapped to A22222
291     AlignedCodonFrame acf = protein.getCodonFrame(protein.getSequenceAt(0))
292             .get(0);
293     assertEquals(1, acf.getdnaSeqs().length);
294     assertEquals(cdna.getSequenceAt(1).getDatasetSequence(),
295             acf.getdnaSeqs()[0]);
296     Mapping[] protMappings = acf.getProtMappings();
297     assertEquals(1, protMappings.length);
298     MapList mapList = protMappings[0].getMap();
299     assertEquals(3, mapList.getFromRatio());
300     assertEquals(1, mapList.getToRatio());
301     assertTrue(Arrays.equals(new int[] { 1, 9 }, mapList.getFromRanges()
302             .get(0)));
303     assertEquals(1, mapList.getFromRanges().size());
304     assertTrue(Arrays.equals(new int[] { 1, 3 },
305             mapList.getToRanges().get(0)));
306     assertEquals(1, mapList.getToRanges().size());
307
308     // V12346 mapped to A33333
309     acf = protein.getCodonFrame(protein.getSequenceAt(1)).get(0);
310     assertEquals(1, acf.getdnaSeqs().length);
311     assertEquals(cdna.getSequenceAt(2).getDatasetSequence(),
312             acf.getdnaSeqs()[0]);
313
314     // V12347 mapped to A11111
315     acf = protein.getCodonFrame(protein.getSequenceAt(2)).get(0);
316     assertEquals(1, acf.getdnaSeqs().length);
317     assertEquals(cdna.getSequenceAt(0).getDatasetSequence(),
318             acf.getdnaSeqs()[0]);
319
320     // no mapping involving the 'extra' A44444
321     assertTrue(protein.getCodonFrame(cdna.getSequenceAt(3)).isEmpty());
322   }
323
324   /**
325    * Test for the alignSequenceAs method that takes two sequences and a mapping.
326    */
327   @Test(groups = { "Functional" })
328   public void testAlignSequenceAs_withMapping_noIntrons()
329   {
330     MapList map = new MapList(new int[] { 1, 6 }, new int[] { 1, 2 }, 3, 1);
331
332     /*
333      * No existing gaps in dna:
334      */
335     checkAlignSequenceAs("GGGAAA", "-A-L-", false, false, map,
336             "---GGG---AAA");
337
338     /*
339      * Now introduce gaps in dna but ignore them when realigning.
340      */
341     checkAlignSequenceAs("-G-G-G-A-A-A-", "-A-L-", false, false, map,
342             "---GGG---AAA");
343
344     /*
345      * Now include gaps in dna when realigning. First retaining 'mapped' gaps
346      * only, i.e. those within the exon region.
347      */
348     checkAlignSequenceAs("-G-G--G-A--A-A-", "-A-L-", true, false, map,
349             "---G-G--G---A--A-A");
350
351     /*
352      * Include all gaps in dna when realigning (within and without the exon
353      * region). The leading gap, and the gaps between codons, are subsumed by
354      * the protein alignment gap.
355      */
356     checkAlignSequenceAs("-G-GG--AA-A---", "-A-L-", true, true, map,
357             "---G-GG---AA-A---");
358
359     /*
360      * Include only unmapped gaps in dna when realigning (outside the exon
361      * region). The leading gap, and the gaps between codons, are subsumed by
362      * the protein alignment gap.
363      */
364     checkAlignSequenceAs("-G-GG--AA-A-", "-A-L-", false, true, map,
365             "---GGG---AAA---");
366   }
367
368   /**
369    * Test for the alignSequenceAs method that takes two sequences and a mapping.
370    */
371   @Test(groups = { "Functional" })
372   public void testAlignSequenceAs_withMapping_withIntrons()
373   {
374     /*
375      * Exons at codon 2 (AAA) and 4 (TTT)
376      */
377     MapList map = new MapList(new int[] { 4, 6, 10, 12 },
378             new int[] { 1, 2 }, 3, 1);
379
380     /*
381      * Simple case: no gaps in dna
382      */
383     checkAlignSequenceAs("GGGAAACCCTTTGGG", "--A-L-", false, false, map,
384             "GGG---AAACCCTTTGGG");
385
386     /*
387      * Add gaps to dna - but ignore when realigning.
388      */
389     checkAlignSequenceAs("-G-G-G--A--A---AC-CC-T-TT-GG-G-", "--A-L-",
390             false, false, map, "GGG---AAACCCTTTGGG");
391
392     /*
393      * Add gaps to dna - include within exons only when realigning.
394      */
395     checkAlignSequenceAs("-G-G-G--A--A---A-C-CC-T-TT-GG-G-", "--A-L-",
396             true, false, map, "GGG---A--A---ACCCT-TTGGG");
397
398     /*
399      * Include gaps outside exons only when realigning.
400      */
401     checkAlignSequenceAs("-G-G-G--A--A---A-C-CC-T-TT-GG-G-", "--A-L-",
402             false, true, map, "-G-G-GAAAC-CCTTT-GG-G-");
403
404     /*
405      * Include gaps following first intron if we are 'preserving mapped gaps'
406      */
407     checkAlignSequenceAs("-G-G-G--A--A---A-C-CC-T-TT-GG-G-", "--A-L-",
408             true, true, map, "-G-G-G--A--A---A-C-CC-T-TT-GG-G-");
409
410     /*
411      * Include all gaps in dna when realigning.
412      */
413     checkAlignSequenceAs("-G-G-G--A--A---A-C-CC-T-TT-GG-G-", "--A-L-",
414             true, true, map, "-G-G-G--A--A---A-C-CC-T-TT-GG-G-");
415   }
416
417   /**
418    * Test for the case where not all of the protein sequence is mapped to cDNA.
419    */
420   @Test(groups = { "Functional" })
421   public void testAlignSequenceAs_withMapping_withUnmappedProtein()
422   {
423     /*
424      * Exons at codon 2 (AAA) and 4 (TTT) mapped to A and P
425      */
426     final MapList map = new MapList(new int[] { 4, 6, 10, 12 }, new int[] {
427         1, 1, 3, 3 }, 3, 1);
428
429     /*
430      * -L- 'aligns' ccc------
431      */
432     checkAlignSequenceAs("gggAAAcccTTTggg", "-A-L-P-", false, false, map,
433             "gggAAAccc------TTTggg");
434   }
435
436   /**
437    * Helper method that performs and verifies the method under test.
438    * 
439    * @param alignee
440    *          the sequence to be realigned
441    * @param alignModel
442    *          the sequence whose alignment is to be copied
443    * @param preserveMappedGaps
444    * @param preserveUnmappedGaps
445    * @param map
446    * @param expected
447    */
448   protected void checkAlignSequenceAs(final String alignee,
449           final String alignModel, final boolean preserveMappedGaps,
450           final boolean preserveUnmappedGaps, MapList map,
451           final String expected)
452   {
453     SequenceI alignMe = new Sequence("Seq1", alignee);
454     alignMe.createDatasetSequence();
455     SequenceI alignFrom = new Sequence("Seq2", alignModel);
456     alignFrom.createDatasetSequence();
457     AlignedCodonFrame acf = new AlignedCodonFrame();
458     acf.addMap(alignMe.getDatasetSequence(),
459             alignFrom.getDatasetSequence(), map);
460
461     AlignmentUtils.alignSequenceAs(alignMe, alignFrom, acf, "---", '-',
462             preserveMappedGaps, preserveUnmappedGaps);
463     assertEquals(expected, alignMe.getSequenceAsString());
464   }
465
466   /**
467    * Test for the alignSequenceAs method where we preserve gaps in introns only.
468    */
469   @Test(groups = { "Functional" })
470   public void testAlignSequenceAs_keepIntronGapsOnly()
471   {
472
473     /*
474      * Intron GGGAAA followed by exon CCCTTT
475      */
476     MapList map = new MapList(new int[] { 7, 12 }, new int[] { 1, 2 }, 3, 1);
477
478     checkAlignSequenceAs("GG-G-AA-A-C-CC-T-TT", "AL", false, true, map,
479             "GG-G-AA-ACCCTTT");
480   }
481
482   /**
483    * Test the method that realigns protein to match mapped codon alignment.
484    */
485   @Test(groups = { "Functional" })
486   public void testAlignProteinAsDna()
487   {
488     // seq1 codons are [1,2,3] [4,5,6] [7,8,9] [10,11,12]
489     SequenceI dna1 = new Sequence("Seq1", "TGCCATTACCAG-");
490     // seq2 codons are [1,3,4] [5,6,7] [8,9,10] [11,12,13]
491     SequenceI dna2 = new Sequence("Seq2", "T-GCCATTACCAG");
492     // seq3 codons are [1,2,3] [4,5,7] [8,9,10] [11,12,13]
493     SequenceI dna3 = new Sequence("Seq3", "TGCCA-TTACCAG");
494     AlignmentI dna = new Alignment(new SequenceI[] { dna1, dna2, dna3 });
495     dna.setDataset(null);
496
497     // protein alignment will be realigned like dna
498     SequenceI prot1 = new Sequence("Seq1", "CHYQ");
499     SequenceI prot2 = new Sequence("Seq2", "CHYQ");
500     SequenceI prot3 = new Sequence("Seq3", "CHYQ");
501     SequenceI prot4 = new Sequence("Seq4", "R-QSV"); // unmapped, unchanged
502     AlignmentI protein = new Alignment(new SequenceI[] { prot1, prot2,
503         prot3, prot4 });
504     protein.setDataset(null);
505
506     MapList map = new MapList(new int[] { 1, 12 }, new int[] { 1, 4 }, 3, 1);
507     AlignedCodonFrame acf = new AlignedCodonFrame();
508     acf.addMap(dna1.getDatasetSequence(), prot1.getDatasetSequence(), map);
509     acf.addMap(dna2.getDatasetSequence(), prot2.getDatasetSequence(), map);
510     acf.addMap(dna3.getDatasetSequence(), prot3.getDatasetSequence(), map);
511     ArrayList<AlignedCodonFrame> acfs = new ArrayList<>();
512     acfs.add(acf);
513     protein.setCodonFrames(acfs);
514
515     /*
516      * Translated codon order is [1,2,3] [1,3,4] [4,5,6] [4,5,7] [5,6,7] [7,8,9]
517      * [8,9,10] [10,11,12] [11,12,13]
518      */
519     AlignmentUtils.alignProteinAsDna(protein, dna);
520     assertEquals("C-H--Y-Q-", prot1.getSequenceAsString());
521     assertEquals("-C--H-Y-Q", prot2.getSequenceAsString());
522     assertEquals("C--H--Y-Q", prot3.getSequenceAsString());
523     assertEquals("R-QSV", prot4.getSequenceAsString());
524   }
525
526   /**
527    * Test the method that tests whether a CDNA sequence translates to a protein
528    * sequence
529    */
530   @Test(groups = { "Functional" })
531   public void testTranslatesAs()
532   {
533     // null arguments check
534     assertFalse(AlignmentUtils.translatesAs(null, 0, null));
535     assertFalse(AlignmentUtils.translatesAs(new char[] { 't' }, 0, null));
536     assertFalse(AlignmentUtils.translatesAs(null, 0, new char[] { 'a' }));
537
538     // straight translation
539     assertTrue(AlignmentUtils.translatesAs("tttcccaaaggg".toCharArray(), 0,
540             "FPKG".toCharArray()));
541     // with extra start codon (not in protein)
542     assertTrue(AlignmentUtils.translatesAs("atgtttcccaaaggg".toCharArray(),
543             3, "FPKG".toCharArray()));
544     // with stop codon1 (not in protein)
545     assertTrue(AlignmentUtils.translatesAs("tttcccaaagggtaa".toCharArray(),
546             0, "FPKG".toCharArray()));
547     // with stop codon1 (in protein as *)
548     assertTrue(AlignmentUtils.translatesAs("tttcccaaagggtaa".toCharArray(),
549             0, "FPKG*".toCharArray()));
550     // with stop codon2 (not in protein)
551     assertTrue(AlignmentUtils.translatesAs("tttcccaaagggtag".toCharArray(),
552             0, "FPKG".toCharArray()));
553     // with stop codon3 (not in protein)
554     assertTrue(AlignmentUtils.translatesAs("tttcccaaagggtga".toCharArray(),
555             0, "FPKG".toCharArray()));
556     // with start and stop codon1
557     assertTrue(AlignmentUtils.translatesAs(
558             "atgtttcccaaagggtaa".toCharArray(), 3, "FPKG".toCharArray()));
559     // with start and stop codon1 (in protein as *)
560     assertTrue(AlignmentUtils.translatesAs(
561             "atgtttcccaaagggtaa".toCharArray(), 3, "FPKG*".toCharArray()));
562     // with start and stop codon2
563     assertTrue(AlignmentUtils.translatesAs(
564             "atgtttcccaaagggtag".toCharArray(), 3, "FPKG".toCharArray()));
565     // with start and stop codon3
566     assertTrue(AlignmentUtils.translatesAs(
567             "atgtttcccaaagggtga".toCharArray(), 3, "FPKG".toCharArray()));
568
569     // with embedded stop codons
570     assertTrue(AlignmentUtils.translatesAs(
571             "atgtttTAGcccaaaTAAgggtga".toCharArray(), 3,
572             "F*PK*G".toCharArray()));
573
574     // wrong protein
575     assertFalse(AlignmentUtils.translatesAs("tttcccaaaggg".toCharArray(),
576             0, "FPMG".toCharArray()));
577
578     // truncated dna
579     assertFalse(AlignmentUtils.translatesAs("tttcccaaagg".toCharArray(), 0,
580             "FPKG".toCharArray()));
581
582     // truncated protein
583     assertFalse(AlignmentUtils.translatesAs("tttcccaaaggg".toCharArray(),
584             0, "FPK".toCharArray()));
585
586     // overlong dna (doesn't end in stop codon)
587     assertFalse(AlignmentUtils.translatesAs(
588             "tttcccaaagggttt".toCharArray(), 0, "FPKG".toCharArray()));
589
590     // dna + stop codon + more
591     assertFalse(AlignmentUtils.translatesAs(
592             "tttcccaaagggttaga".toCharArray(), 0, "FPKG".toCharArray()));
593
594     // overlong protein
595     assertFalse(AlignmentUtils.translatesAs("tttcccaaaggg".toCharArray(),
596             0, "FPKGQ".toCharArray()));
597   }
598
599   /**
600    * Test mapping of protein to cDNA, for cases where the cDNA has start and/or
601    * stop codons in addition to the protein coding sequence.
602    * 
603    * @throws IOException
604    */
605   @Test(groups = { "Functional" })
606   public void testMapProteinAlignmentToCdna_withStartAndStopCodons()
607           throws IOException
608   {
609     List<SequenceI> protseqs = new ArrayList<>();
610     protseqs.add(new Sequence("UNIPROT|V12345", "EIQ"));
611     protseqs.add(new Sequence("UNIPROT|V12346", "EIQ"));
612     protseqs.add(new Sequence("UNIPROT|V12347", "SAR"));
613     AlignmentI protein = new Alignment(protseqs.toArray(new SequenceI[3]));
614     protein.setDataset(null);
615
616     List<SequenceI> dnaseqs = new ArrayList<>();
617     // start + SAR:
618     dnaseqs.add(new Sequence("EMBL|A11111", "ATGTCAGCACGC"));
619     // = EIQ + stop
620     dnaseqs.add(new Sequence("EMBL|A22222", "GAGATACAATAA"));
621     // = start +EIQ + stop
622     dnaseqs.add(new Sequence("EMBL|A33333", "ATGGAAATCCAGTAG"));
623     dnaseqs.add(new Sequence("EMBL|A44444", "GAAATTCAG"));
624     AlignmentI cdna = new Alignment(dnaseqs.toArray(new SequenceI[4]));
625     cdna.setDataset(null);
626
627     assertTrue(AlignmentUtils.mapProteinAlignmentToCdna(protein, cdna));
628
629     // 3 mappings made, each from 1 to 1 sequence
630     assertEquals(3, protein.getCodonFrames().size());
631     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(0)).size());
632     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(1)).size());
633     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(2)).size());
634
635     // V12345 mapped from A22222
636     AlignedCodonFrame acf = protein.getCodonFrame(protein.getSequenceAt(0))
637             .get(0);
638     assertEquals(1, acf.getdnaSeqs().length);
639     assertEquals(cdna.getSequenceAt(1).getDatasetSequence(),
640             acf.getdnaSeqs()[0]);
641     Mapping[] protMappings = acf.getProtMappings();
642     assertEquals(1, protMappings.length);
643     MapList mapList = protMappings[0].getMap();
644     assertEquals(3, mapList.getFromRatio());
645     assertEquals(1, mapList.getToRatio());
646     assertTrue(Arrays.equals(new int[] { 1, 9 }, mapList.getFromRanges()
647             .get(0)));
648     assertEquals(1, mapList.getFromRanges().size());
649     assertTrue(Arrays.equals(new int[] { 1, 3 },
650             mapList.getToRanges().get(0)));
651     assertEquals(1, mapList.getToRanges().size());
652
653     // V12346 mapped from A33333 starting position 4
654     acf = protein.getCodonFrame(protein.getSequenceAt(1)).get(0);
655     assertEquals(1, acf.getdnaSeqs().length);
656     assertEquals(cdna.getSequenceAt(2).getDatasetSequence(),
657             acf.getdnaSeqs()[0]);
658     protMappings = acf.getProtMappings();
659     assertEquals(1, protMappings.length);
660     mapList = protMappings[0].getMap();
661     assertEquals(3, mapList.getFromRatio());
662     assertEquals(1, mapList.getToRatio());
663     assertTrue(Arrays.equals(new int[] { 4, 12 }, mapList.getFromRanges()
664             .get(0)));
665     assertEquals(1, mapList.getFromRanges().size());
666     assertTrue(Arrays.equals(new int[] { 1, 3 },
667             mapList.getToRanges().get(0)));
668     assertEquals(1, mapList.getToRanges().size());
669
670     // V12347 mapped to A11111 starting position 4
671     acf = protein.getCodonFrame(protein.getSequenceAt(2)).get(0);
672     assertEquals(1, acf.getdnaSeqs().length);
673     assertEquals(cdna.getSequenceAt(0).getDatasetSequence(),
674             acf.getdnaSeqs()[0]);
675     protMappings = acf.getProtMappings();
676     assertEquals(1, protMappings.length);
677     mapList = protMappings[0].getMap();
678     assertEquals(3, mapList.getFromRatio());
679     assertEquals(1, mapList.getToRatio());
680     assertTrue(Arrays.equals(new int[] { 4, 12 }, mapList.getFromRanges()
681             .get(0)));
682     assertEquals(1, mapList.getFromRanges().size());
683     assertTrue(Arrays.equals(new int[] { 1, 3 },
684             mapList.getToRanges().get(0)));
685     assertEquals(1, mapList.getToRanges().size());
686
687     // no mapping involving the 'extra' A44444
688     assertTrue(protein.getCodonFrame(cdna.getSequenceAt(3)).isEmpty());
689   }
690
691   /**
692    * Test mapping of protein to cDNA, for the case where we have some sequence
693    * cross-references. Verify that 1-to-many mappings are made where
694    * cross-references exist and sequences are mappable.
695    * 
696    * @throws IOException
697    */
698   @Test(groups = { "Functional" })
699   public void testMapProteinAlignmentToCdna_withXrefs() throws IOException
700   {
701     List<SequenceI> protseqs = new ArrayList<>();
702     protseqs.add(new Sequence("UNIPROT|V12345", "EIQ"));
703     protseqs.add(new Sequence("UNIPROT|V12346", "EIQ"));
704     protseqs.add(new Sequence("UNIPROT|V12347", "SAR"));
705     AlignmentI protein = new Alignment(protseqs.toArray(new SequenceI[3]));
706     protein.setDataset(null);
707
708     List<SequenceI> dnaseqs = new ArrayList<>();
709     dnaseqs.add(new Sequence("EMBL|A11111", "TCAGCACGC")); // = SAR
710     dnaseqs.add(new Sequence("EMBL|A22222", "ATGGAGATACAA")); // = start + EIQ
711     dnaseqs.add(new Sequence("EMBL|A33333", "GAAATCCAG")); // = EIQ
712     dnaseqs.add(new Sequence("EMBL|A44444", "GAAATTCAG")); // = EIQ
713     dnaseqs.add(new Sequence("EMBL|A55555", "GAGATTCAG")); // = EIQ
714     AlignmentI cdna = new Alignment(dnaseqs.toArray(new SequenceI[5]));
715     cdna.setDataset(null);
716
717     // Xref A22222 to V12345 (should get mapped)
718     dnaseqs.get(1).addDBRef(new DBRefEntry("UNIPROT", "1", "V12345"));
719     // Xref V12345 to A44444 (should get mapped)
720     protseqs.get(0).addDBRef(new DBRefEntry("EMBL", "1", "A44444"));
721     // Xref A33333 to V12347 (sequence mismatch - should not get mapped)
722     dnaseqs.get(2).addDBRef(new DBRefEntry("UNIPROT", "1", "V12347"));
723     // as V12345 is mapped to A22222 and A44444, this leaves V12346 unmapped.
724     // it should get paired up with the unmapped A33333
725     // A11111 should be mapped to V12347
726     // A55555 is spare and has no xref so is not mapped
727
728     assertTrue(AlignmentUtils.mapProteinAlignmentToCdna(protein, cdna));
729
730     // 4 protein mappings made for 3 proteins, 2 to V12345, 1 each to V12346/7
731     assertEquals(3, protein.getCodonFrames().size());
732     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(0)).size());
733     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(1)).size());
734     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(2)).size());
735
736     // one mapping for each of the first 4 cDNA sequences
737     assertEquals(1, protein.getCodonFrame(cdna.getSequenceAt(0)).size());
738     assertEquals(1, protein.getCodonFrame(cdna.getSequenceAt(1)).size());
739     assertEquals(1, protein.getCodonFrame(cdna.getSequenceAt(2)).size());
740     assertEquals(1, protein.getCodonFrame(cdna.getSequenceAt(3)).size());
741
742     // V12345 mapped to A22222 and A44444
743     AlignedCodonFrame acf = protein.getCodonFrame(protein.getSequenceAt(0))
744             .get(0);
745     assertEquals(2, acf.getdnaSeqs().length);
746     assertEquals(cdna.getSequenceAt(1).getDatasetSequence(),
747             acf.getdnaSeqs()[0]);
748     assertEquals(cdna.getSequenceAt(3).getDatasetSequence(),
749             acf.getdnaSeqs()[1]);
750
751     // V12346 mapped to A33333
752     acf = protein.getCodonFrame(protein.getSequenceAt(1)).get(0);
753     assertEquals(1, acf.getdnaSeqs().length);
754     assertEquals(cdna.getSequenceAt(2).getDatasetSequence(),
755             acf.getdnaSeqs()[0]);
756
757     // V12347 mapped to A11111
758     acf = protein.getCodonFrame(protein.getSequenceAt(2)).get(0);
759     assertEquals(1, acf.getdnaSeqs().length);
760     assertEquals(cdna.getSequenceAt(0).getDatasetSequence(),
761             acf.getdnaSeqs()[0]);
762
763     // no mapping involving the 'extra' A55555
764     assertTrue(protein.getCodonFrame(cdna.getSequenceAt(4)).isEmpty());
765   }
766
767   /**
768    * Test mapping of protein to cDNA, for the case where we have some sequence
769    * cross-references. Verify that once we have made an xref mapping we don't
770    * also map un-xrefd sequeces.
771    * 
772    * @throws IOException
773    */
774   @Test(groups = { "Functional" })
775   public void testMapProteinAlignmentToCdna_prioritiseXrefs()
776           throws IOException
777   {
778     List<SequenceI> protseqs = new ArrayList<>();
779     protseqs.add(new Sequence("UNIPROT|V12345", "EIQ"));
780     protseqs.add(new Sequence("UNIPROT|V12346", "EIQ"));
781     AlignmentI protein = new Alignment(
782             protseqs.toArray(new SequenceI[protseqs.size()]));
783     protein.setDataset(null);
784
785     List<SequenceI> dnaseqs = new ArrayList<>();
786     dnaseqs.add(new Sequence("EMBL|A11111", "GAAATCCAG")); // = EIQ
787     dnaseqs.add(new Sequence("EMBL|A22222", "GAAATTCAG")); // = EIQ
788     AlignmentI cdna = new Alignment(dnaseqs.toArray(new SequenceI[dnaseqs
789             .size()]));
790     cdna.setDataset(null);
791
792     // Xref A22222 to V12345 (should get mapped)
793     // A11111 should then be mapped to the unmapped V12346
794     dnaseqs.get(1).addDBRef(new DBRefEntry("UNIPROT", "1", "V12345"));
795
796     assertTrue(AlignmentUtils.mapProteinAlignmentToCdna(protein, cdna));
797
798     // 2 protein mappings made
799     assertEquals(2, protein.getCodonFrames().size());
800     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(0)).size());
801     assertEquals(1, protein.getCodonFrame(protein.getSequenceAt(1)).size());
802
803     // one mapping for each of the cDNA sequences
804     assertEquals(1, protein.getCodonFrame(cdna.getSequenceAt(0)).size());
805     assertEquals(1, protein.getCodonFrame(cdna.getSequenceAt(1)).size());
806
807     // V12345 mapped to A22222
808     AlignedCodonFrame acf = protein.getCodonFrame(protein.getSequenceAt(0))
809             .get(0);
810     assertEquals(1, acf.getdnaSeqs().length);
811     assertEquals(cdna.getSequenceAt(1).getDatasetSequence(),
812             acf.getdnaSeqs()[0]);
813
814     // V12346 mapped to A11111
815     acf = protein.getCodonFrame(protein.getSequenceAt(1)).get(0);
816     assertEquals(1, acf.getdnaSeqs().length);
817     assertEquals(cdna.getSequenceAt(0).getDatasetSequence(),
818             acf.getdnaSeqs()[0]);
819   }
820
821   /**
822    * Test the method that shows or hides sequence annotations by type(s) and
823    * selection group.
824    */
825   @Test(groups = { "Functional" })
826   public void testShowOrHideSequenceAnnotations()
827   {
828     SequenceI seq1 = new Sequence("Seq1", "AAA");
829     SequenceI seq2 = new Sequence("Seq2", "BBB");
830     SequenceI seq3 = new Sequence("Seq3", "CCC");
831     Annotation[] anns = new Annotation[] { new Annotation(2f) };
832     AlignmentAnnotation ann1 = new AlignmentAnnotation("Structure", "ann1",
833             anns);
834     ann1.setSequenceRef(seq1);
835     AlignmentAnnotation ann2 = new AlignmentAnnotation("Structure", "ann2",
836             anns);
837     ann2.setSequenceRef(seq2);
838     AlignmentAnnotation ann3 = new AlignmentAnnotation("Structure", "ann3",
839             anns);
840     AlignmentAnnotation ann4 = new AlignmentAnnotation("Temp", "ann4", anns);
841     ann4.setSequenceRef(seq1);
842     AlignmentAnnotation ann5 = new AlignmentAnnotation("Temp", "ann5", anns);
843     ann5.setSequenceRef(seq2);
844     AlignmentAnnotation ann6 = new AlignmentAnnotation("Temp", "ann6", anns);
845     AlignmentI al = new Alignment(new SequenceI[] { seq1, seq2, seq3 });
846     al.addAnnotation(ann1); // Structure for Seq1
847     al.addAnnotation(ann2); // Structure for Seq2
848     al.addAnnotation(ann3); // Structure for no sequence
849     al.addAnnotation(ann4); // Temp for seq1
850     al.addAnnotation(ann5); // Temp for seq2
851     al.addAnnotation(ann6); // Temp for no sequence
852     List<String> types = new ArrayList<>();
853     List<SequenceI> scope = new ArrayList<>();
854
855     /*
856      * Set all sequence related Structure to hidden (ann1, ann2)
857      */
858     types.add("Structure");
859     AlignmentUtils.showOrHideSequenceAnnotations(al, types, null, false,
860             false);
861     assertFalse(ann1.visible);
862     assertFalse(ann2.visible);
863     assertTrue(ann3.visible); // not sequence-related, not affected
864     assertTrue(ann4.visible); // not Structure, not affected
865     assertTrue(ann5.visible); // "
866     assertTrue(ann6.visible); // not sequence-related, not affected
867
868     /*
869      * Set Temp in {seq1, seq3} to hidden
870      */
871     types.clear();
872     types.add("Temp");
873     scope.add(seq1);
874     scope.add(seq3);
875     AlignmentUtils.showOrHideSequenceAnnotations(al, types, scope, false,
876             false);
877     assertFalse(ann1.visible); // unchanged
878     assertFalse(ann2.visible); // unchanged
879     assertTrue(ann3.visible); // not sequence-related, not affected
880     assertFalse(ann4.visible); // Temp for seq1 hidden
881     assertTrue(ann5.visible); // not in scope, not affected
882     assertTrue(ann6.visible); // not sequence-related, not affected
883
884     /*
885      * Set Temp in all sequences to hidden
886      */
887     types.clear();
888     types.add("Temp");
889     scope.add(seq1);
890     scope.add(seq3);
891     AlignmentUtils.showOrHideSequenceAnnotations(al, types, null, false,
892             false);
893     assertFalse(ann1.visible); // unchanged
894     assertFalse(ann2.visible); // unchanged
895     assertTrue(ann3.visible); // not sequence-related, not affected
896     assertFalse(ann4.visible); // Temp for seq1 hidden
897     assertFalse(ann5.visible); // Temp for seq2 hidden
898     assertTrue(ann6.visible); // not sequence-related, not affected
899
900     /*
901      * Set all types in {seq1, seq3} to visible
902      */
903     types.clear();
904     scope.clear();
905     scope.add(seq1);
906     scope.add(seq3);
907     AlignmentUtils.showOrHideSequenceAnnotations(al, types, scope, true,
908             true);
909     assertTrue(ann1.visible); // Structure for seq1 set visible
910     assertFalse(ann2.visible); // not in scope, unchanged
911     assertTrue(ann3.visible); // not sequence-related, not affected
912     assertTrue(ann4.visible); // Temp for seq1 set visible
913     assertFalse(ann5.visible); // not in scope, unchanged
914     assertTrue(ann6.visible); // not sequence-related, not affected
915
916     /*
917      * Set all types in all scope to hidden
918      */
919     AlignmentUtils.showOrHideSequenceAnnotations(al, types, null, true,
920             false);
921     assertFalse(ann1.visible);
922     assertFalse(ann2.visible);
923     assertTrue(ann3.visible); // not sequence-related, not affected
924     assertFalse(ann4.visible);
925     assertFalse(ann5.visible);
926     assertTrue(ann6.visible); // not sequence-related, not affected
927   }
928
929   /**
930    * Tests for the method that checks if one sequence cross-references another
931    */
932   @Test(groups = { "Functional" })
933   public void testHasCrossRef()
934   {
935     assertFalse(AlignmentUtils.hasCrossRef(null, null));
936     SequenceI seq1 = new Sequence("EMBL|A12345", "ABCDEF");
937     assertFalse(AlignmentUtils.hasCrossRef(seq1, null));
938     assertFalse(AlignmentUtils.hasCrossRef(null, seq1));
939     SequenceI seq2 = new Sequence("UNIPROT|V20192", "ABCDEF");
940     assertFalse(AlignmentUtils.hasCrossRef(seq1, seq2));
941
942     // different ref
943     seq1.addDBRef(new DBRefEntry("UNIPROT", "1", "v20193"));
944     assertFalse(AlignmentUtils.hasCrossRef(seq1, seq2));
945
946     // case-insensitive; version number is ignored
947     seq1.addDBRef(new DBRefEntry("UNIPROT", "1", "v20192"));
948     assertTrue(AlignmentUtils.hasCrossRef(seq1, seq2));
949
950     // right case!
951     seq1.addDBRef(new DBRefEntry("UNIPROT", "1", "V20192"));
952     assertTrue(AlignmentUtils.hasCrossRef(seq1, seq2));
953     // test is one-way only
954     assertFalse(AlignmentUtils.hasCrossRef(seq2, seq1));
955   }
956
957   /**
958    * Tests for the method that checks if either sequence cross-references the
959    * other
960    */
961   @Test(groups = { "Functional" })
962   public void testHaveCrossRef()
963   {
964     assertFalse(AlignmentUtils.hasCrossRef(null, null));
965     SequenceI seq1 = new Sequence("EMBL|A12345", "ABCDEF");
966     assertFalse(AlignmentUtils.haveCrossRef(seq1, null));
967     assertFalse(AlignmentUtils.haveCrossRef(null, seq1));
968     SequenceI seq2 = new Sequence("UNIPROT|V20192", "ABCDEF");
969     assertFalse(AlignmentUtils.haveCrossRef(seq1, seq2));
970
971     seq1.addDBRef(new DBRefEntry("UNIPROT", "1", "V20192"));
972     assertTrue(AlignmentUtils.haveCrossRef(seq1, seq2));
973     // next is true for haveCrossRef, false for hasCrossRef
974     assertTrue(AlignmentUtils.haveCrossRef(seq2, seq1));
975
976     // now the other way round
977     seq1.setDBRefs(null);
978     seq2.addDBRef(new DBRefEntry("EMBL", "1", "A12345"));
979     assertTrue(AlignmentUtils.haveCrossRef(seq1, seq2));
980     assertTrue(AlignmentUtils.haveCrossRef(seq2, seq1));
981
982     // now both ways
983     seq1.addDBRef(new DBRefEntry("UNIPROT", "1", "V20192"));
984     assertTrue(AlignmentUtils.haveCrossRef(seq1, seq2));
985     assertTrue(AlignmentUtils.haveCrossRef(seq2, seq1));
986   }
987
988   /**
989    * Test the method that extracts the cds-only part of a dna alignment.
990    */
991   @Test(groups = { "Functional" })
992   public void testMakeCdsAlignment()
993   {
994     /*
995      * scenario:
996      *     dna1 --> [4, 6] [10,12]        --> pep1 
997      *     dna2 --> [1, 3] [7, 9] [13,15] --> pep2
998      */
999     SequenceI dna1 = new Sequence("dna1", "aaaGGGcccTTTaaa");
1000     SequenceI dna2 = new Sequence("dna2", "GGGcccTTTaaaCCC");
1001     SequenceI pep1 = new Sequence("pep1", "GF");
1002     SequenceI pep2 = new Sequence("pep2", "GFP");
1003     pep1.addDBRef(new DBRefEntry("UNIPROT", "0", "pep1"));
1004     pep2.addDBRef(new DBRefEntry("UNIPROT", "0", "pep2"));
1005     dna1.createDatasetSequence();
1006     dna2.createDatasetSequence();
1007     pep1.createDatasetSequence();
1008     pep2.createDatasetSequence();
1009     AlignmentI dna = new Alignment(new SequenceI[] { dna1, dna2 });
1010     dna.setDataset(null);
1011
1012     /*
1013      * put a variant feature on dna2 base 8
1014      * - should transfer to cds2 base 5
1015      */
1016     dna2.addSequenceFeature(new SequenceFeature("variant", "hgmd", 8, 8,
1017             0f, null));
1018
1019     /*
1020      * need a sourceDbRef if we are to construct dbrefs to the CDS
1021      * sequence from the dna contig sequences
1022      */
1023     DBRefEntry dbref = new DBRefEntry("ENSEMBL", "0", "dna1");
1024     dna1.getDatasetSequence().addDBRef(dbref);
1025     org.testng.Assert.assertEquals(dbref, dna1.getPrimaryDBRefs().get(0));
1026     dbref = new DBRefEntry("ENSEMBL", "0", "dna2");
1027     dna2.getDatasetSequence().addDBRef(dbref);
1028     org.testng.Assert.assertEquals(dbref, dna2.getPrimaryDBRefs().get(0));
1029
1030     /*
1031      * CDS sequences are 'discovered' from dna-to-protein mappings on the alignment
1032      * dataset (e.g. added from dbrefs by CrossRef.findXrefSequences)
1033      */
1034     MapList mapfordna1 = new MapList(new int[] { 4, 6, 10, 12 }, new int[] {
1035         1, 2 }, 3, 1);
1036     AlignedCodonFrame acf = new AlignedCodonFrame();
1037     acf.addMap(dna1.getDatasetSequence(), pep1.getDatasetSequence(),
1038             mapfordna1);
1039     dna.addCodonFrame(acf);
1040     MapList mapfordna2 = new MapList(new int[] { 1, 3, 7, 9, 13, 15 },
1041             new int[] { 1, 3 }, 3, 1);
1042     acf = new AlignedCodonFrame();
1043     acf.addMap(dna2.getDatasetSequence(), pep2.getDatasetSequence(),
1044             mapfordna2);
1045     dna.addCodonFrame(acf);
1046
1047     /*
1048      * In this case, mappings originally came from matching Uniprot accessions 
1049      * - so need an xref on dna involving those regions. 
1050      * These are normally constructed from CDS annotation
1051      */
1052     DBRefEntry dna1xref = new DBRefEntry("UNIPROT", "ENSEMBL", "pep1",
1053             new Mapping(mapfordna1));
1054     dna1.addDBRef(dna1xref);
1055     assertEquals(2, dna1.getDBRefs().length); // to self and to pep1
1056     DBRefEntry dna2xref = new DBRefEntry("UNIPROT", "ENSEMBL", "pep2",
1057             new Mapping(mapfordna2));
1058     dna2.addDBRef(dna2xref);
1059     assertEquals(2, dna2.getDBRefs().length); // to self and to pep2
1060
1061     /*
1062      * execute method under test:
1063      */
1064     AlignmentI cds = AlignmentUtils.makeCdsAlignment(new SequenceI[] {
1065         dna1, dna2 }, dna.getDataset(), null);
1066
1067     /*
1068      * verify cds sequences
1069      */
1070     assertEquals(2, cds.getSequences().size());
1071     assertEquals("GGGTTT", cds.getSequenceAt(0).getSequenceAsString());
1072     assertEquals("GGGTTTCCC", cds.getSequenceAt(1).getSequenceAsString());
1073
1074     /*
1075      * verify shared, extended alignment dataset
1076      */
1077     assertSame(dna.getDataset(), cds.getDataset());
1078     SequenceI cds1Dss = cds.getSequenceAt(0).getDatasetSequence();
1079     SequenceI cds2Dss = cds.getSequenceAt(1).getDatasetSequence();
1080     assertTrue(dna.getDataset().getSequences().contains(cds1Dss));
1081     assertTrue(dna.getDataset().getSequences().contains(cds2Dss));
1082
1083     /*
1084      * verify CDS has a dbref with mapping to peptide
1085      */
1086     assertNotNull(cds1Dss.getDBRefs());
1087     assertEquals(2, cds1Dss.getDBRefs().length);
1088     dbref = cds1Dss.getDBRefs()[0];
1089     assertEquals(dna1xref.getSource(), dbref.getSource());
1090     // version is via ensembl's primary ref
1091     assertEquals(dna1xref.getVersion(), dbref.getVersion());
1092     assertEquals(dna1xref.getAccessionId(), dbref.getAccessionId());
1093     assertNotNull(dbref.getMap());
1094     assertSame(pep1.getDatasetSequence(), dbref.getMap().getTo());
1095     MapList cdsMapping = new MapList(new int[] { 1, 6 },
1096             new int[] { 1, 2 }, 3, 1);
1097     assertEquals(cdsMapping, dbref.getMap().getMap());
1098
1099     /*
1100      * verify peptide has added a dbref with reverse mapping to CDS
1101      */
1102     assertNotNull(pep1.getDBRefs());
1103     // FIXME pep1.getDBRefs() is 1 - is that the correct behaviour ?
1104     assertEquals(2, pep1.getDBRefs().length);
1105     dbref = pep1.getDBRefs()[1];
1106     assertEquals("ENSEMBL", dbref.getSource());
1107     assertEquals("0", dbref.getVersion());
1108     assertEquals("CDS|dna1", dbref.getAccessionId());
1109     assertNotNull(dbref.getMap());
1110     assertSame(cds1Dss, dbref.getMap().getTo());
1111     assertEquals(cdsMapping.getInverse(), dbref.getMap().getMap());
1112
1113     /*
1114      * verify cDNA has added a dbref with mapping to CDS
1115      */
1116     assertEquals(3, dna1.getDBRefs().length);
1117     DBRefEntry dbRefEntry = dna1.getDBRefs()[2];
1118     assertSame(cds1Dss, dbRefEntry.getMap().getTo());
1119     MapList dnaToCdsMapping = new MapList(new int[] { 4, 6, 10, 12 },
1120             new int[] { 1, 6 }, 1, 1);
1121     assertEquals(dnaToCdsMapping, dbRefEntry.getMap().getMap());
1122     assertEquals(3, dna2.getDBRefs().length);
1123     dbRefEntry = dna2.getDBRefs()[2];
1124     assertSame(cds2Dss, dbRefEntry.getMap().getTo());
1125     dnaToCdsMapping = new MapList(new int[] { 1, 3, 7, 9, 13, 15 },
1126             new int[] { 1, 9 }, 1, 1);
1127     assertEquals(dnaToCdsMapping, dbRefEntry.getMap().getMap());
1128
1129     /*
1130      * verify CDS has added a dbref with mapping to cDNA
1131      */
1132     assertEquals(2, cds1Dss.getDBRefs().length);
1133     dbRefEntry = cds1Dss.getDBRefs()[1];
1134     assertSame(dna1.getDatasetSequence(), dbRefEntry.getMap().getTo());
1135     MapList cdsToDnaMapping = new MapList(new int[] { 1, 6 }, new int[] {
1136         4, 6, 10, 12 }, 1, 1);
1137     assertEquals(cdsToDnaMapping, dbRefEntry.getMap().getMap());
1138     assertEquals(2, cds2Dss.getDBRefs().length);
1139     dbRefEntry = cds2Dss.getDBRefs()[1];
1140     assertSame(dna2.getDatasetSequence(), dbRefEntry.getMap().getTo());
1141     cdsToDnaMapping = new MapList(new int[] { 1, 9 }, new int[] { 1, 3, 7,
1142         9, 13, 15 }, 1, 1);
1143     assertEquals(cdsToDnaMapping, dbRefEntry.getMap().getMap());
1144
1145     /*
1146      * Verify mappings from CDS to peptide, cDNA to CDS, and cDNA to peptide
1147      * the mappings are on the shared alignment dataset
1148      * 6 mappings, 2*(DNA->CDS), 2*(DNA->Pep), 2*(CDS->Pep) 
1149      */
1150     List<AlignedCodonFrame> cdsMappings = cds.getDataset().getCodonFrames();
1151     assertEquals(6, cdsMappings.size());
1152
1153     /*
1154      * verify that mapping sets for dna and cds alignments are different
1155      * [not current behaviour - all mappings are on the alignment dataset]  
1156      */
1157     // select -> subselect type to test.
1158     // Assert.assertNotSame(dna.getCodonFrames(), cds.getCodonFrames());
1159     // assertEquals(4, dna.getCodonFrames().size());
1160     // assertEquals(4, cds.getCodonFrames().size());
1161
1162     /*
1163      * Two mappings involve pep1 (dna to pep1, cds to pep1)
1164      * Mapping from pep1 to GGGTTT in first new exon sequence
1165      */
1166     List<AlignedCodonFrame> pep1Mappings = MappingUtils
1167             .findMappingsForSequence(pep1, cdsMappings);
1168     assertEquals(2, pep1Mappings.size());
1169     List<AlignedCodonFrame> mappings = MappingUtils
1170             .findMappingsForSequence(cds.getSequenceAt(0), pep1Mappings);
1171     assertEquals(1, mappings.size());
1172
1173     // map G to GGG
1174     SearchResultsI sr = MappingUtils.buildSearchResults(pep1, 1, mappings);
1175     assertEquals(1, sr.getResults().size());
1176     SearchResultMatchI m = sr.getResults().get(0);
1177     assertSame(cds1Dss, m.getSequence());
1178     assertEquals(1, m.getStart());
1179     assertEquals(3, m.getEnd());
1180     // map F to TTT
1181     sr = MappingUtils.buildSearchResults(pep1, 2, mappings);
1182     m = sr.getResults().get(0);
1183     assertSame(cds1Dss, m.getSequence());
1184     assertEquals(4, m.getStart());
1185     assertEquals(6, m.getEnd());
1186
1187     /*
1188      * Two mappings involve pep2 (dna to pep2, cds to pep2)
1189      * Verify mapping from pep2 to GGGTTTCCC in second new exon sequence
1190      */
1191     List<AlignedCodonFrame> pep2Mappings = MappingUtils
1192             .findMappingsForSequence(pep2, cdsMappings);
1193     assertEquals(2, pep2Mappings.size());
1194     mappings = MappingUtils.findMappingsForSequence(cds.getSequenceAt(1),
1195             pep2Mappings);
1196     assertEquals(1, mappings.size());
1197     // map G to GGG
1198     sr = MappingUtils.buildSearchResults(pep2, 1, mappings);
1199     assertEquals(1, sr.getResults().size());
1200     m = sr.getResults().get(0);
1201     assertSame(cds2Dss, m.getSequence());
1202     assertEquals(1, m.getStart());
1203     assertEquals(3, m.getEnd());
1204     // map F to TTT
1205     sr = MappingUtils.buildSearchResults(pep2, 2, mappings);
1206     m = sr.getResults().get(0);
1207     assertSame(cds2Dss, m.getSequence());
1208     assertEquals(4, m.getStart());
1209     assertEquals(6, m.getEnd());
1210     // map P to CCC
1211     sr = MappingUtils.buildSearchResults(pep2, 3, mappings);
1212     m = sr.getResults().get(0);
1213     assertSame(cds2Dss, m.getSequence());
1214     assertEquals(7, m.getStart());
1215     assertEquals(9, m.getEnd());
1216
1217     /*
1218      * check cds2 acquired a variant feature in position 5
1219      */
1220     List<SequenceFeature> sfs = cds2Dss.getSequenceFeatures();
1221     assertNotNull(sfs);
1222     assertEquals(1, sfs.size());
1223     assertEquals("variant", sfs.get(0).type);
1224     assertEquals(5, sfs.get(0).begin);
1225     assertEquals(5, sfs.get(0).end);
1226   }
1227
1228   /**
1229    * Test the method that makes a cds-only alignment from a DNA sequence and its
1230    * product mappings, for the case where there are multiple exon mappings to
1231    * different protein products.
1232    */
1233   @Test(groups = { "Functional" })
1234   public void testMakeCdsAlignment_multipleProteins()
1235   {
1236     SequenceI dna1 = new Sequence("dna1", "aaaGGGcccTTTaaa");
1237     SequenceI pep1 = new Sequence("pep1", "GF"); // GGGTTT
1238     SequenceI pep2 = new Sequence("pep2", "KP"); // aaaccc
1239     SequenceI pep3 = new Sequence("pep3", "KF"); // aaaTTT
1240     dna1.createDatasetSequence();
1241     pep1.createDatasetSequence();
1242     pep2.createDatasetSequence();
1243     pep3.createDatasetSequence();
1244     pep1.getDatasetSequence().addDBRef(
1245             new DBRefEntry("EMBLCDS", "2", "A12345"));
1246     pep2.getDatasetSequence().addDBRef(
1247             new DBRefEntry("EMBLCDS", "3", "A12346"));
1248     pep3.getDatasetSequence().addDBRef(
1249             new DBRefEntry("EMBLCDS", "4", "A12347"));
1250
1251     /*
1252      * Create the CDS alignment
1253      */
1254     AlignmentI dna = new Alignment(new SequenceI[] { dna1 });
1255     dna.setDataset(null);
1256
1257     /*
1258      * Make the mappings from dna to protein
1259      */
1260     // map ...GGG...TTT to GF
1261     MapList map = new MapList(new int[] { 4, 6, 10, 12 },
1262             new int[] { 1, 2 }, 3, 1);
1263     AlignedCodonFrame acf = new AlignedCodonFrame();
1264     acf.addMap(dna1.getDatasetSequence(), pep1.getDatasetSequence(), map);
1265     dna.addCodonFrame(acf);
1266
1267     // map aaa...ccc to KP
1268     map = new MapList(new int[] { 1, 3, 7, 9 }, new int[] { 1, 2 }, 3, 1);
1269     acf = new AlignedCodonFrame();
1270     acf.addMap(dna1.getDatasetSequence(), pep2.getDatasetSequence(), map);
1271     dna.addCodonFrame(acf);
1272
1273     // map aaa......TTT to KF
1274     map = new MapList(new int[] { 1, 3, 10, 12 }, new int[] { 1, 2 }, 3, 1);
1275     acf = new AlignedCodonFrame();
1276     acf.addMap(dna1.getDatasetSequence(), pep3.getDatasetSequence(), map);
1277     dna.addCodonFrame(acf);
1278
1279     /*
1280      * execute method under test
1281      */
1282     AlignmentI cdsal = AlignmentUtils.makeCdsAlignment(
1283             new SequenceI[] { dna1 }, dna.getDataset(), null);
1284
1285     /*
1286      * Verify we have 3 cds sequences, mapped to pep1/2/3 respectively
1287      */
1288     List<SequenceI> cds = cdsal.getSequences();
1289     assertEquals(3, cds.size());
1290
1291     /*
1292      * verify shared, extended alignment dataset
1293      */
1294     assertSame(cdsal.getDataset(), dna.getDataset());
1295     assertTrue(dna.getDataset().getSequences()
1296             .contains(cds.get(0).getDatasetSequence()));
1297     assertTrue(dna.getDataset().getSequences()
1298             .contains(cds.get(1).getDatasetSequence()));
1299     assertTrue(dna.getDataset().getSequences()
1300             .contains(cds.get(2).getDatasetSequence()));
1301
1302     /*
1303      * verify aligned cds sequences and their xrefs
1304      */
1305     SequenceI cdsSeq = cds.get(0);
1306     assertEquals("GGGTTT", cdsSeq.getSequenceAsString());
1307     // assertEquals("dna1|A12345", cdsSeq.getName());
1308     assertEquals("CDS|dna1", cdsSeq.getName());
1309     // assertEquals(1, cdsSeq.getDBRefs().length);
1310     // DBRefEntry cdsRef = cdsSeq.getDBRefs()[0];
1311     // assertEquals("EMBLCDS", cdsRef.getSource());
1312     // assertEquals("2", cdsRef.getVersion());
1313     // assertEquals("A12345", cdsRef.getAccessionId());
1314
1315     cdsSeq = cds.get(1);
1316     assertEquals("aaaccc", cdsSeq.getSequenceAsString());
1317     // assertEquals("dna1|A12346", cdsSeq.getName());
1318     assertEquals("CDS|dna1", cdsSeq.getName());
1319     // assertEquals(1, cdsSeq.getDBRefs().length);
1320     // cdsRef = cdsSeq.getDBRefs()[0];
1321     // assertEquals("EMBLCDS", cdsRef.getSource());
1322     // assertEquals("3", cdsRef.getVersion());
1323     // assertEquals("A12346", cdsRef.getAccessionId());
1324
1325     cdsSeq = cds.get(2);
1326     assertEquals("aaaTTT", cdsSeq.getSequenceAsString());
1327     // assertEquals("dna1|A12347", cdsSeq.getName());
1328     assertEquals("CDS|dna1", cdsSeq.getName());
1329     // assertEquals(1, cdsSeq.getDBRefs().length);
1330     // cdsRef = cdsSeq.getDBRefs()[0];
1331     // assertEquals("EMBLCDS", cdsRef.getSource());
1332     // assertEquals("4", cdsRef.getVersion());
1333     // assertEquals("A12347", cdsRef.getAccessionId());
1334
1335     /*
1336      * Verify there are mappings from each cds sequence to its protein product
1337      * and also to its dna source
1338      */
1339     List<AlignedCodonFrame> newMappings = cdsal.getCodonFrames();
1340
1341     /*
1342      * 6 mappings involve dna1 (to pep1/2/3, cds1/2/3) 
1343      */
1344     List<AlignedCodonFrame> dnaMappings = MappingUtils
1345             .findMappingsForSequence(dna1, newMappings);
1346     assertEquals(6, dnaMappings.size());
1347
1348     /*
1349      * dna1 to pep1
1350      */
1351     List<AlignedCodonFrame> mappings = MappingUtils
1352             .findMappingsForSequence(pep1, dnaMappings);
1353     assertEquals(1, mappings.size());
1354     assertEquals(1, mappings.get(0).getMappings().size());
1355     assertSame(pep1.getDatasetSequence(), mappings.get(0).getMappings()
1356             .get(0).getMapping().getTo());
1357
1358     /*
1359      * dna1 to cds1
1360      */
1361     List<AlignedCodonFrame> dnaToCds1Mappings = MappingUtils
1362             .findMappingsForSequence(cds.get(0), dnaMappings);
1363     Mapping mapping = dnaToCds1Mappings.get(0).getMappings().get(0)
1364             .getMapping();
1365     assertSame(cds.get(0).getDatasetSequence(), mapping.getTo());
1366     assertEquals("G(1) in CDS should map to G(4) in DNA", 4, mapping
1367             .getMap().getToPosition(1));
1368
1369     /*
1370      * dna1 to pep2
1371      */
1372     mappings = MappingUtils.findMappingsForSequence(pep2, dnaMappings);
1373     assertEquals(1, mappings.size());
1374     assertEquals(1, mappings.get(0).getMappings().size());
1375     assertSame(pep2.getDatasetSequence(), mappings.get(0).getMappings()
1376             .get(0).getMapping().getTo());
1377
1378     /*
1379      * dna1 to cds2
1380      */
1381     List<AlignedCodonFrame> dnaToCds2Mappings = MappingUtils
1382             .findMappingsForSequence(cds.get(1), dnaMappings);
1383     mapping = dnaToCds2Mappings.get(0).getMappings().get(0).getMapping();
1384     assertSame(cds.get(1).getDatasetSequence(), mapping.getTo());
1385     assertEquals("c(4) in CDS should map to c(7) in DNA", 7, mapping
1386             .getMap().getToPosition(4));
1387
1388     /*
1389      * dna1 to pep3
1390      */
1391     mappings = MappingUtils.findMappingsForSequence(pep3, dnaMappings);
1392     assertEquals(1, mappings.size());
1393     assertEquals(1, mappings.get(0).getMappings().size());
1394     assertSame(pep3.getDatasetSequence(), mappings.get(0).getMappings()
1395             .get(0).getMapping().getTo());
1396
1397     /*
1398      * dna1 to cds3
1399      */
1400     List<AlignedCodonFrame> dnaToCds3Mappings = MappingUtils
1401             .findMappingsForSequence(cds.get(2), dnaMappings);
1402     mapping = dnaToCds3Mappings.get(0).getMappings().get(0).getMapping();
1403     assertSame(cds.get(2).getDatasetSequence(), mapping.getTo());
1404     assertEquals("T(4) in CDS should map to T(10) in DNA", 10, mapping
1405             .getMap().getToPosition(4));
1406   }
1407
1408   @Test(groups = { "Functional" })
1409   public void testIsMappable()
1410   {
1411     SequenceI dna1 = new Sequence("dna1", "cgCAGtgGT");
1412     SequenceI aa1 = new Sequence("aa1", "RSG");
1413     AlignmentI al1 = new Alignment(new SequenceI[] { dna1 });
1414     AlignmentI al2 = new Alignment(new SequenceI[] { aa1 });
1415
1416     assertFalse(AlignmentUtils.isMappable(null, null));
1417     assertFalse(AlignmentUtils.isMappable(al1, null));
1418     assertFalse(AlignmentUtils.isMappable(null, al1));
1419     assertFalse(AlignmentUtils.isMappable(al1, al1));
1420     assertFalse(AlignmentUtils.isMappable(al2, al2));
1421
1422     assertTrue(AlignmentUtils.isMappable(al1, al2));
1423     assertTrue(AlignmentUtils.isMappable(al2, al1));
1424   }
1425
1426   /**
1427    * Test creating a mapping when the sequences involved do not start at residue
1428    * 1
1429    * 
1430    * @throws IOException
1431    */
1432   @Test(groups = { "Functional" })
1433   public void testMapCdnaToProtein_forSubsequence() throws IOException
1434   {
1435     SequenceI prot = new Sequence("UNIPROT|V12345", "E-I--Q", 10, 12);
1436     prot.createDatasetSequence();
1437
1438     SequenceI dna = new Sequence("EMBL|A33333", "GAA--AT-C-CAG", 40, 48);
1439     dna.createDatasetSequence();
1440
1441     MapList map = AlignmentUtils.mapCdnaToProtein(prot, dna);
1442     assertEquals(10, map.getToLowest());
1443     assertEquals(12, map.getToHighest());
1444     assertEquals(40, map.getFromLowest());
1445     assertEquals(48, map.getFromHighest());
1446   }
1447
1448   /**
1449    * Test for the alignSequenceAs method where we have protein mapped to protein
1450    */
1451   @Test(groups = { "Functional" })
1452   public void testAlignSequenceAs_mappedProteinProtein()
1453   {
1454
1455     SequenceI alignMe = new Sequence("Match", "MGAASEV");
1456     alignMe.createDatasetSequence();
1457     SequenceI alignFrom = new Sequence("Query", "LQTGYMGAASEVMFSPTRR");
1458     alignFrom.createDatasetSequence();
1459
1460     AlignedCodonFrame acf = new AlignedCodonFrame();
1461     // this is like a domain or motif match of part of a peptide sequence
1462     MapList map = new MapList(new int[] { 6, 12 }, new int[] { 1, 7 }, 1, 1);
1463     acf.addMap(alignFrom.getDatasetSequence(),
1464             alignMe.getDatasetSequence(), map);
1465
1466     AlignmentUtils.alignSequenceAs(alignMe, alignFrom, acf, "-", '-', true,
1467             true);
1468     assertEquals("-----MGAASEV-------", alignMe.getSequenceAsString());
1469   }
1470
1471   /**
1472    * Test for the alignSequenceAs method where there are trailing unmapped
1473    * residues in the model sequence
1474    */
1475   @Test(groups = { "Functional" })
1476   public void testAlignSequenceAs_withTrailingPeptide()
1477   {
1478     // map first 3 codons to KPF; G is a trailing unmapped residue
1479     MapList map = new MapList(new int[] { 1, 9 }, new int[] { 1, 3 }, 3, 1);
1480
1481     checkAlignSequenceAs("AAACCCTTT", "K-PFG", true, true, map,
1482             "AAA---CCCTTT---");
1483   }
1484
1485   /**
1486    * Tests for transferring features between mapped sequences
1487    */
1488   @Test(groups = { "Functional" })
1489   public void testTransferFeatures()
1490   {
1491     SequenceI dna = new Sequence("dna/20-34", "acgTAGcaaGCCcgt");
1492     SequenceI cds = new Sequence("cds/10-15", "TAGGCC");
1493
1494     // no overlap
1495     dna.addSequenceFeature(new SequenceFeature("type1", "desc1", 1, 2, 1f,
1496             null));
1497     // partial overlap - to [1, 1]
1498     dna.addSequenceFeature(new SequenceFeature("type2", "desc2", 3, 4, 2f,
1499             null));
1500     // exact overlap - to [1, 3]
1501     dna.addSequenceFeature(new SequenceFeature("type3", "desc3", 4, 6, 3f,
1502             null));
1503     // spanning overlap - to [2, 5]
1504     dna.addSequenceFeature(new SequenceFeature("type4", "desc4", 5, 11, 4f,
1505             null));
1506     // exactly overlaps whole mapped range [1, 6]
1507     dna.addSequenceFeature(new SequenceFeature("type5", "desc5", 4, 12, 5f,
1508             null));
1509     // no overlap (internal)
1510     dna.addSequenceFeature(new SequenceFeature("type6", "desc6", 7, 9, 6f,
1511             null));
1512     // no overlap (3' end)
1513     dna.addSequenceFeature(new SequenceFeature("type7", "desc7", 13, 15,
1514             7f, null));
1515     // overlap (3' end) - to [6, 6]
1516     dna.addSequenceFeature(new SequenceFeature("type8", "desc8", 12, 12,
1517             8f, null));
1518     // extended overlap - to [6, +]
1519     dna.addSequenceFeature(new SequenceFeature("type9", "desc9", 12, 13,
1520             9f, null));
1521
1522     MapList map = new MapList(new int[] { 4, 6, 10, 12 },
1523             new int[] { 1, 6 }, 1, 1);
1524
1525     /*
1526      * transferFeatures() will build 'partial overlap' for regions
1527      * that partially overlap 5' or 3' (start or end) of target sequence
1528      */
1529     AlignmentUtils.transferFeatures(dna, cds, map, null);
1530     List<SequenceFeature> sfs = cds.getSequenceFeatures();
1531     assertEquals(6, sfs.size());
1532
1533     SequenceFeature sf = sfs.get(0);
1534     assertEquals("type2", sf.getType());
1535     assertEquals("desc2", sf.getDescription());
1536     assertEquals(2f, sf.getScore());
1537     assertEquals(1, sf.getBegin());
1538     assertEquals(1, sf.getEnd());
1539
1540     sf = sfs.get(1);
1541     assertEquals("type3", sf.getType());
1542     assertEquals("desc3", sf.getDescription());
1543     assertEquals(3f, sf.getScore());
1544     assertEquals(1, sf.getBegin());
1545     assertEquals(3, sf.getEnd());
1546
1547     sf = sfs.get(2);
1548     assertEquals("type4", sf.getType());
1549     assertEquals(2, sf.getBegin());
1550     assertEquals(5, sf.getEnd());
1551
1552     sf = sfs.get(3);
1553     assertEquals("type5", sf.getType());
1554     assertEquals(1, sf.getBegin());
1555     assertEquals(6, sf.getEnd());
1556
1557     sf = sfs.get(4);
1558     assertEquals("type8", sf.getType());
1559     assertEquals(6, sf.getBegin());
1560     assertEquals(6, sf.getEnd());
1561
1562     sf = sfs.get(5);
1563     assertEquals("type9", sf.getType());
1564     assertEquals(6, sf.getBegin());
1565     assertEquals(6, sf.getEnd());
1566   }
1567
1568   /**
1569    * Tests for transferring features between mapped sequences
1570    */
1571   @Test(groups = { "Functional" })
1572   public void testTransferFeatures_withOmit()
1573   {
1574     SequenceI dna = new Sequence("dna/20-34", "acgTAGcaaGCCcgt");
1575     SequenceI cds = new Sequence("cds/10-15", "TAGGCC");
1576
1577     MapList map = new MapList(new int[] { 4, 6, 10, 12 },
1578             new int[] { 1, 6 }, 1, 1);
1579
1580     // [5, 11] maps to [2, 5]
1581     dna.addSequenceFeature(new SequenceFeature("type4", "desc4", 5, 11, 4f,
1582             null));
1583     // [4, 12] maps to [1, 6]
1584     dna.addSequenceFeature(new SequenceFeature("type5", "desc5", 4, 12, 5f,
1585             null));
1586     // [12, 12] maps to [6, 6]
1587     dna.addSequenceFeature(new SequenceFeature("type8", "desc8", 12, 12,
1588             8f, null));
1589
1590     // desc4 and desc8 are the 'omit these' varargs
1591     AlignmentUtils.transferFeatures(dna, cds, map, null, "type4", "type8");
1592     List<SequenceFeature> sfs = cds.getSequenceFeatures();
1593     assertEquals(1, sfs.size());
1594
1595     SequenceFeature sf = sfs.get(0);
1596     assertEquals("type5", sf.getType());
1597     assertEquals(1, sf.getBegin());
1598     assertEquals(6, sf.getEnd());
1599   }
1600
1601   /**
1602    * Tests for transferring features between mapped sequences
1603    */
1604   @Test(groups = { "Functional" })
1605   public void testTransferFeatures_withSelect()
1606   {
1607     SequenceI dna = new Sequence("dna/20-34", "acgTAGcaaGCCcgt");
1608     SequenceI cds = new Sequence("cds/10-15", "TAGGCC");
1609
1610     MapList map = new MapList(new int[] { 4, 6, 10, 12 },
1611             new int[] { 1, 6 }, 1, 1);
1612
1613     // [5, 11] maps to [2, 5]
1614     dna.addSequenceFeature(new SequenceFeature("type4", "desc4", 5, 11, 4f,
1615             null));
1616     // [4, 12] maps to [1, 6]
1617     dna.addSequenceFeature(new SequenceFeature("type5", "desc5", 4, 12, 5f,
1618             null));
1619     // [12, 12] maps to [6, 6]
1620     dna.addSequenceFeature(new SequenceFeature("type8", "desc8", 12, 12,
1621             8f, null));
1622
1623     // "type5" is the 'select this type' argument
1624     AlignmentUtils.transferFeatures(dna, cds, map, "type5");
1625     List<SequenceFeature> sfs = cds.getSequenceFeatures();
1626     assertEquals(1, sfs.size());
1627
1628     SequenceFeature sf = sfs.get(0);
1629     assertEquals("type5", sf.getType());
1630     assertEquals(1, sf.getBegin());
1631     assertEquals(6, sf.getEnd());
1632   }
1633
1634   /**
1635    * Test the method that extracts the cds-only part of a dna alignment, for the
1636    * case where the cds should be aligned to match its nucleotide sequence.
1637    */
1638   @Test(groups = { "Functional" })
1639   public void testMakeCdsAlignment_alternativeTranscripts()
1640   {
1641     SequenceI dna1 = new Sequence("dna1", "aaaGGGCC-----CTTTaaaGGG");
1642     // alternative transcript of same dna skips CCC codon
1643     SequenceI dna2 = new Sequence("dna2", "aaaGGGCC-----cttTaaaGGG");
1644     // dna3 has no mapping (protein product) so should be ignored here
1645     SequenceI dna3 = new Sequence("dna3", "aaaGGGCCCCCGGGcttTaaaGGG");
1646     SequenceI pep1 = new Sequence("pep1", "GPFG");
1647     SequenceI pep2 = new Sequence("pep2", "GPG");
1648     dna1.createDatasetSequence();
1649     dna2.createDatasetSequence();
1650     dna3.createDatasetSequence();
1651     pep1.createDatasetSequence();
1652     pep2.createDatasetSequence();
1653
1654     AlignmentI dna = new Alignment(new SequenceI[] { dna1, dna2, dna3 });
1655     dna.setDataset(null);
1656
1657     MapList map = new MapList(new int[] { 4, 12, 16, 18 },
1658             new int[] { 1, 4 }, 3, 1);
1659     AlignedCodonFrame acf = new AlignedCodonFrame();
1660     acf.addMap(dna1.getDatasetSequence(), pep1.getDatasetSequence(), map);
1661     dna.addCodonFrame(acf);
1662     map = new MapList(new int[] { 4, 8, 12, 12, 16, 18 },
1663             new int[] { 1, 3 }, 3, 1);
1664     acf = new AlignedCodonFrame();
1665     acf.addMap(dna2.getDatasetSequence(), pep2.getDatasetSequence(), map);
1666     dna.addCodonFrame(acf);
1667
1668     AlignmentI cds = AlignmentUtils.makeCdsAlignment(new SequenceI[] {
1669         dna1, dna2, dna3 }, dna.getDataset(), null);
1670     List<SequenceI> cdsSeqs = cds.getSequences();
1671     assertEquals(2, cdsSeqs.size());
1672     assertEquals("GGGCCCTTTGGG", cdsSeqs.get(0).getSequenceAsString());
1673     assertEquals("GGGCCTGGG", cdsSeqs.get(1).getSequenceAsString());
1674
1675     /*
1676      * verify shared, extended alignment dataset
1677      */
1678     assertSame(dna.getDataset(), cds.getDataset());
1679     assertTrue(dna.getDataset().getSequences()
1680             .contains(cdsSeqs.get(0).getDatasetSequence()));
1681     assertTrue(dna.getDataset().getSequences()
1682             .contains(cdsSeqs.get(1).getDatasetSequence()));
1683
1684     /*
1685      * Verify 6 mappings: dna1 to cds1, cds1 to pep1, dna1 to pep1
1686      * and the same for dna2/cds2/pep2
1687      */
1688     List<AlignedCodonFrame> mappings = cds.getCodonFrames();
1689     assertEquals(6, mappings.size());
1690
1691     /*
1692      * 2 mappings involve pep1
1693      */
1694     List<AlignedCodonFrame> pep1Mappings = MappingUtils
1695             .findMappingsForSequence(pep1, mappings);
1696     assertEquals(2, pep1Mappings.size());
1697
1698     /*
1699      * Get mapping of pep1 to cds1 and verify it
1700      * maps GPFG to 1-3,4-6,7-9,10-12
1701      */
1702     List<AlignedCodonFrame> pep1CdsMappings = MappingUtils
1703             .findMappingsForSequence(cds.getSequenceAt(0), pep1Mappings);
1704     assertEquals(1, pep1CdsMappings.size());
1705     SearchResultsI sr = MappingUtils.buildSearchResults(pep1, 1,
1706             pep1CdsMappings);
1707     assertEquals(1, sr.getResults().size());
1708     SearchResultMatchI m = sr.getResults().get(0);
1709     assertEquals(cds.getSequenceAt(0).getDatasetSequence(), m.getSequence());
1710     assertEquals(1, m.getStart());
1711     assertEquals(3, m.getEnd());
1712     sr = MappingUtils.buildSearchResults(pep1, 2, pep1CdsMappings);
1713     m = sr.getResults().get(0);
1714     assertEquals(4, m.getStart());
1715     assertEquals(6, m.getEnd());
1716     sr = MappingUtils.buildSearchResults(pep1, 3, pep1CdsMappings);
1717     m = sr.getResults().get(0);
1718     assertEquals(7, m.getStart());
1719     assertEquals(9, m.getEnd());
1720     sr = MappingUtils.buildSearchResults(pep1, 4, pep1CdsMappings);
1721     m = sr.getResults().get(0);
1722     assertEquals(10, m.getStart());
1723     assertEquals(12, m.getEnd());
1724
1725     /*
1726      * Get mapping of pep2 to cds2 and verify it
1727      * maps GPG in pep2 to 1-3,4-6,7-9 in second CDS sequence
1728      */
1729     List<AlignedCodonFrame> pep2Mappings = MappingUtils
1730             .findMappingsForSequence(pep2, mappings);
1731     assertEquals(2, pep2Mappings.size());
1732     List<AlignedCodonFrame> pep2CdsMappings = MappingUtils
1733             .findMappingsForSequence(cds.getSequenceAt(1), pep2Mappings);
1734     assertEquals(1, pep2CdsMappings.size());
1735     sr = MappingUtils.buildSearchResults(pep2, 1, pep2CdsMappings);
1736     assertEquals(1, sr.getResults().size());
1737     m = sr.getResults().get(0);
1738     assertEquals(cds.getSequenceAt(1).getDatasetSequence(), m.getSequence());
1739     assertEquals(1, m.getStart());
1740     assertEquals(3, m.getEnd());
1741     sr = MappingUtils.buildSearchResults(pep2, 2, pep2CdsMappings);
1742     m = sr.getResults().get(0);
1743     assertEquals(4, m.getStart());
1744     assertEquals(6, m.getEnd());
1745     sr = MappingUtils.buildSearchResults(pep2, 3, pep2CdsMappings);
1746     m = sr.getResults().get(0);
1747     assertEquals(7, m.getStart());
1748     assertEquals(9, m.getEnd());
1749   }
1750
1751   /**
1752    * Test the method that realigns protein to match mapped codon alignment.
1753    */
1754   @Test(groups = { "Functional" })
1755   public void testAlignProteinAsDna_incompleteStartCodon()
1756   {
1757     // seq1: incomplete start codon (not mapped), then [3, 11]
1758     SequenceI dna1 = new Sequence("Seq1", "ccAAA-TTT-GGG-");
1759     // seq2 codons are [4, 5], [8, 11]
1760     SequenceI dna2 = new Sequence("Seq2", "ccaAA-ttT-GGG-");
1761     // seq3 incomplete start codon at 'tt'
1762     SequenceI dna3 = new Sequence("Seq3", "ccaaa-ttt-GGG-");
1763     AlignmentI dna = new Alignment(new SequenceI[] { dna1, dna2, dna3 });
1764     dna.setDataset(null);
1765
1766     // prot1 has 'X' for incomplete start codon (not mapped)
1767     SequenceI prot1 = new Sequence("Seq1", "XKFG"); // X for incomplete start
1768     SequenceI prot2 = new Sequence("Seq2", "NG");
1769     SequenceI prot3 = new Sequence("Seq3", "XG"); // X for incomplete start
1770     AlignmentI protein = new Alignment(new SequenceI[] { prot1, prot2,
1771         prot3 });
1772     protein.setDataset(null);
1773
1774     // map dna1 [3, 11] to prot1 [2, 4] KFG
1775     MapList map = new MapList(new int[] { 3, 11 }, new int[] { 2, 4 }, 3, 1);
1776     AlignedCodonFrame acf = new AlignedCodonFrame();
1777     acf.addMap(dna1.getDatasetSequence(), prot1.getDatasetSequence(), map);
1778
1779     // map dna2 [4, 5] [8, 11] to prot2 [1, 2] NG
1780     map = new MapList(new int[] { 4, 5, 8, 11 }, new int[] { 1, 2 }, 3, 1);
1781     acf.addMap(dna2.getDatasetSequence(), prot2.getDatasetSequence(), map);
1782
1783     // map dna3 [9, 11] to prot3 [2, 2] G
1784     map = new MapList(new int[] { 9, 11 }, new int[] { 2, 2 }, 3, 1);
1785     acf.addMap(dna3.getDatasetSequence(), prot3.getDatasetSequence(), map);
1786
1787     ArrayList<AlignedCodonFrame> acfs = new ArrayList<>();
1788     acfs.add(acf);
1789     protein.setCodonFrames(acfs);
1790
1791     /*
1792      * verify X is included in the aligned proteins, and placed just
1793      * before the first mapped residue 
1794      * CCT is between CCC and TTT
1795      */
1796     AlignmentUtils.alignProteinAsDna(protein, dna);
1797     assertEquals("XK-FG", prot1.getSequenceAsString());
1798     assertEquals("--N-G", prot2.getSequenceAsString());
1799     assertEquals("---XG", prot3.getSequenceAsString());
1800   }
1801
1802   /**
1803    * Tests for the method that maps the subset of a dna sequence that has CDS
1804    * (or subtype) feature - case where the start codon is incomplete.
1805    */
1806   @Test(groups = "Functional")
1807   public void testFindCdsPositions_fivePrimeIncomplete()
1808   {
1809     SequenceI dnaSeq = new Sequence("dna", "aaagGGCCCaaaTTTttt");
1810     dnaSeq.createDatasetSequence();
1811     SequenceI ds = dnaSeq.getDatasetSequence();
1812
1813     // CDS for dna 5-6 (incomplete codon), 7-9
1814     SequenceFeature sf = new SequenceFeature("CDS", "", 5, 9, 0f, null);
1815     sf.setPhase("2"); // skip 2 bases to start of next codon
1816     ds.addSequenceFeature(sf);
1817     // CDS for dna 13-15
1818     sf = new SequenceFeature("CDS_predicted", "", 13, 15, 0f, null);
1819     ds.addSequenceFeature(sf);
1820
1821     List<int[]> ranges = AlignmentUtils.findCdsPositions(dnaSeq);
1822
1823     /*
1824      * check the mapping starts with the first complete codon
1825      */
1826     assertEquals(6, MappingUtils.getLength(ranges));
1827     assertEquals(2, ranges.size());
1828     assertEquals(7, ranges.get(0)[0]);
1829     assertEquals(9, ranges.get(0)[1]);
1830     assertEquals(13, ranges.get(1)[0]);
1831     assertEquals(15, ranges.get(1)[1]);
1832   }
1833
1834   /**
1835    * Tests for the method that maps the subset of a dna sequence that has CDS
1836    * (or subtype) feature.
1837    */
1838   @Test(groups = "Functional")
1839   public void testFindCdsPositions()
1840   {
1841     SequenceI dnaSeq = new Sequence("dna", "aaaGGGcccAAATTTttt");
1842     dnaSeq.createDatasetSequence();
1843     SequenceI ds = dnaSeq.getDatasetSequence();
1844
1845     // CDS for dna 10-12
1846     SequenceFeature sf = new SequenceFeature("CDS_predicted", "", 10, 12,
1847             0f, null);
1848     sf.setStrand("+");
1849     ds.addSequenceFeature(sf);
1850     // CDS for dna 4-6
1851     sf = new SequenceFeature("CDS", "", 4, 6, 0f, null);
1852     sf.setStrand("+");
1853     ds.addSequenceFeature(sf);
1854     // exon feature should be ignored here
1855     sf = new SequenceFeature("exon", "", 7, 9, 0f, null);
1856     ds.addSequenceFeature(sf);
1857
1858     List<int[]> ranges = AlignmentUtils.findCdsPositions(dnaSeq);
1859     /*
1860      * verify ranges { [4-6], [12-10] }
1861      * note CDS ranges are ordered ascending even if the CDS
1862      * features are not
1863      */
1864     assertEquals(6, MappingUtils.getLength(ranges));
1865     assertEquals(2, ranges.size());
1866     assertEquals(4, ranges.get(0)[0]);
1867     assertEquals(6, ranges.get(0)[1]);
1868     assertEquals(10, ranges.get(1)[0]);
1869     assertEquals(12, ranges.get(1)[1]);
1870   }
1871
1872   /**
1873    * Tests for the method that maps the subset of a dna sequence that has CDS
1874    * (or subtype) feature, with CDS strand = '-' (reverse)
1875    */
1876   // test turned off as currently findCdsPositions is not strand-dependent
1877   // left in case it comes around again...
1878   @Test(groups = "Functional", enabled = false)
1879   public void testFindCdsPositions_reverseStrand()
1880   {
1881     SequenceI dnaSeq = new Sequence("dna", "aaaGGGcccAAATTTttt");
1882     dnaSeq.createDatasetSequence();
1883     SequenceI ds = dnaSeq.getDatasetSequence();
1884
1885     // CDS for dna 4-6
1886     SequenceFeature sf = new SequenceFeature("CDS", "", 4, 6, 0f, null);
1887     sf.setStrand("-");
1888     ds.addSequenceFeature(sf);
1889     // exon feature should be ignored here
1890     sf = new SequenceFeature("exon", "", 7, 9, 0f, null);
1891     ds.addSequenceFeature(sf);
1892     // CDS for dna 10-12
1893     sf = new SequenceFeature("CDS_predicted", "", 10, 12, 0f, null);
1894     sf.setStrand("-");
1895     ds.addSequenceFeature(sf);
1896
1897     List<int[]> ranges = AlignmentUtils.findCdsPositions(dnaSeq);
1898     /*
1899      * verify ranges { [12-10], [6-4] }
1900      */
1901     assertEquals(6, MappingUtils.getLength(ranges));
1902     assertEquals(2, ranges.size());
1903     assertEquals(12, ranges.get(0)[0]);
1904     assertEquals(10, ranges.get(0)[1]);
1905     assertEquals(6, ranges.get(1)[0]);
1906     assertEquals(4, ranges.get(1)[1]);
1907   }
1908
1909   /**
1910    * Tests for the method that maps the subset of a dna sequence that has CDS
1911    * (or subtype) feature - reverse strand case where the start codon is
1912    * incomplete.
1913    */
1914   @Test(groups = "Functional", enabled = false)
1915   // test turned off as currently findCdsPositions is not strand-dependent
1916   // left in case it comes around again...
1917   public void testFindCdsPositions_reverseStrandThreePrimeIncomplete()
1918   {
1919     SequenceI dnaSeq = new Sequence("dna", "aaagGGCCCaaaTTTttt");
1920     dnaSeq.createDatasetSequence();
1921     SequenceI ds = dnaSeq.getDatasetSequence();
1922
1923     // CDS for dna 5-9
1924     SequenceFeature sf = new SequenceFeature("CDS", "", 5, 9, 0f, null);
1925     sf.setStrand("-");
1926     ds.addSequenceFeature(sf);
1927     // CDS for dna 13-15
1928     sf = new SequenceFeature("CDS_predicted", "", 13, 15, 0f, null);
1929     sf.setStrand("-");
1930     sf.setPhase("2"); // skip 2 bases to start of next codon
1931     ds.addSequenceFeature(sf);
1932
1933     List<int[]> ranges = AlignmentUtils.findCdsPositions(dnaSeq);
1934
1935     /*
1936      * check the mapping starts with the first complete codon
1937      * expect ranges [13, 13], [9, 5]
1938      */
1939     assertEquals(6, MappingUtils.getLength(ranges));
1940     assertEquals(2, ranges.size());
1941     assertEquals(13, ranges.get(0)[0]);
1942     assertEquals(13, ranges.get(0)[1]);
1943     assertEquals(9, ranges.get(1)[0]);
1944     assertEquals(5, ranges.get(1)[1]);
1945   }
1946
1947   @Test(groups = "Functional")
1948   public void testAlignAs_alternateTranscriptsUngapped()
1949   {
1950     SequenceI dna1 = new Sequence("dna1", "cccGGGTTTaaa");
1951     SequenceI dna2 = new Sequence("dna2", "CCCgggtttAAA");
1952     AlignmentI dna = new Alignment(new SequenceI[] { dna1, dna2 });
1953     ((Alignment) dna).createDatasetAlignment();
1954     SequenceI cds1 = new Sequence("cds1", "GGGTTT");
1955     SequenceI cds2 = new Sequence("cds2", "CCCAAA");
1956     AlignmentI cds = new Alignment(new SequenceI[] { cds1, cds2 });
1957     ((Alignment) cds).createDatasetAlignment();
1958
1959     AlignedCodonFrame acf = new AlignedCodonFrame();
1960     MapList map = new MapList(new int[] { 4, 9 }, new int[] { 1, 6 }, 1, 1);
1961     acf.addMap(dna1.getDatasetSequence(), cds1.getDatasetSequence(), map);
1962     map = new MapList(new int[] { 1, 3, 10, 12 }, new int[] { 1, 6 }, 1, 1);
1963     acf.addMap(dna2.getDatasetSequence(), cds2.getDatasetSequence(), map);
1964
1965     /*
1966      * verify CDS alignment is as:
1967      *   cccGGGTTTaaa (cdna)
1968      *   CCCgggtttAAA (cdna)
1969      *   
1970      *   ---GGGTTT--- (cds)
1971      *   CCC------AAA (cds)
1972      */
1973     dna.addCodonFrame(acf);
1974     AlignmentUtils.alignAs(cds, dna);
1975     assertEquals("---GGGTTT", cds.getSequenceAt(0).getSequenceAsString());
1976     assertEquals("CCC------AAA", cds.getSequenceAt(1).getSequenceAsString());
1977   }
1978
1979   @Test(groups = { "Functional" })
1980   public void testAddMappedPositions()
1981   {
1982     SequenceI from = new Sequence("dna", "ggAA-ATcc-TT-g");
1983     SequenceI seq1 = new Sequence("cds", "AAATTT");
1984     from.createDatasetSequence();
1985     seq1.createDatasetSequence();
1986     Mapping mapping = new Mapping(seq1, new MapList(
1987             new int[] { 3, 6, 9, 10 }, new int[] { 1, 6 }, 1, 1));
1988     Map<Integer, Map<SequenceI, Character>> map = new TreeMap<>();
1989     AlignmentUtils.addMappedPositions(seq1, from, mapping, map);
1990
1991     /*
1992      * verify map has seq1 residues in columns 3,4,6,7,11,12
1993      */
1994     assertEquals(6, map.size());
1995     assertEquals('A', map.get(3).get(seq1).charValue());
1996     assertEquals('A', map.get(4).get(seq1).charValue());
1997     assertEquals('A', map.get(6).get(seq1).charValue());
1998     assertEquals('T', map.get(7).get(seq1).charValue());
1999     assertEquals('T', map.get(11).get(seq1).charValue());
2000     assertEquals('T', map.get(12).get(seq1).charValue());
2001
2002     /*
2003      * 
2004      */
2005   }
2006
2007   /**
2008    * Test case where the mapping 'from' range includes a stop codon which is
2009    * absent in the 'to' range
2010    */
2011   @Test(groups = { "Functional" })
2012   public void testAddMappedPositions_withStopCodon()
2013   {
2014     SequenceI from = new Sequence("dna", "ggAA-ATcc-TT-g");
2015     SequenceI seq1 = new Sequence("cds", "AAATTT");
2016     from.createDatasetSequence();
2017     seq1.createDatasetSequence();
2018     Mapping mapping = new Mapping(seq1, new MapList(
2019             new int[] { 3, 6, 9, 10 }, new int[] { 1, 6 }, 1, 1));
2020     Map<Integer, Map<SequenceI, Character>> map = new TreeMap<>();
2021     AlignmentUtils.addMappedPositions(seq1, from, mapping, map);
2022
2023     /*
2024      * verify map has seq1 residues in columns 3,4,6,7,11,12
2025      */
2026     assertEquals(6, map.size());
2027     assertEquals('A', map.get(3).get(seq1).charValue());
2028     assertEquals('A', map.get(4).get(seq1).charValue());
2029     assertEquals('A', map.get(6).get(seq1).charValue());
2030     assertEquals('T', map.get(7).get(seq1).charValue());
2031     assertEquals('T', map.get(11).get(seq1).charValue());
2032     assertEquals('T', map.get(12).get(seq1).charValue());
2033   }
2034
2035   /**
2036    * Test for the case where the products for which we want CDS are specified.
2037    * This is to represent the case where EMBL has CDS mappings to both Uniprot
2038    * and EMBLCDSPROTEIN. makeCdsAlignment() should only return the mappings for
2039    * the protein sequences specified.
2040    */
2041   @Test(groups = { "Functional" })
2042   public void testMakeCdsAlignment_filterProducts()
2043   {
2044     SequenceI dna1 = new Sequence("dna1", "aaaGGGcccTTTaaa");
2045     SequenceI dna2 = new Sequence("dna2", "GGGcccTTTaaaCCC");
2046     SequenceI pep1 = new Sequence("Uniprot|pep1", "GF");
2047     SequenceI pep2 = new Sequence("Uniprot|pep2", "GFP");
2048     SequenceI pep3 = new Sequence("EMBL|pep3", "GF");
2049     SequenceI pep4 = new Sequence("EMBL|pep4", "GFP");
2050     dna1.createDatasetSequence();
2051     dna2.createDatasetSequence();
2052     pep1.createDatasetSequence();
2053     pep2.createDatasetSequence();
2054     pep3.createDatasetSequence();
2055     pep4.createDatasetSequence();
2056     AlignmentI dna = new Alignment(new SequenceI[] { dna1, dna2 });
2057     dna.setDataset(null);
2058     AlignmentI emblPeptides = new Alignment(new SequenceI[] { pep3, pep4 });
2059     emblPeptides.setDataset(null);
2060
2061     AlignedCodonFrame acf = new AlignedCodonFrame();
2062     MapList map = new MapList(new int[] { 4, 6, 10, 12 },
2063             new int[] { 1, 2 }, 3, 1);
2064     acf.addMap(dna1.getDatasetSequence(), pep1.getDatasetSequence(), map);
2065     acf.addMap(dna1.getDatasetSequence(), pep3.getDatasetSequence(), map);
2066     dna.addCodonFrame(acf);
2067
2068     acf = new AlignedCodonFrame();
2069     map = new MapList(new int[] { 1, 3, 7, 9, 13, 15 }, new int[] { 1, 3 },
2070             3, 1);
2071     acf.addMap(dna2.getDatasetSequence(), pep2.getDatasetSequence(), map);
2072     acf.addMap(dna2.getDatasetSequence(), pep4.getDatasetSequence(), map);
2073     dna.addCodonFrame(acf);
2074
2075     /*
2076      * execute method under test to find CDS for EMBL peptides only
2077      */
2078     AlignmentI cds = AlignmentUtils.makeCdsAlignment(new SequenceI[] {
2079         dna1, dna2 }, dna.getDataset(), emblPeptides.getSequencesArray());
2080
2081     assertEquals(2, cds.getSequences().size());
2082     assertEquals("GGGTTT", cds.getSequenceAt(0).getSequenceAsString());
2083     assertEquals("GGGTTTCCC", cds.getSequenceAt(1).getSequenceAsString());
2084
2085     /*
2086      * verify shared, extended alignment dataset
2087      */
2088     assertSame(dna.getDataset(), cds.getDataset());
2089     assertTrue(dna.getDataset().getSequences()
2090             .contains(cds.getSequenceAt(0).getDatasetSequence()));
2091     assertTrue(dna.getDataset().getSequences()
2092             .contains(cds.getSequenceAt(1).getDatasetSequence()));
2093
2094     /*
2095      * Verify mappings from CDS to peptide, cDNA to CDS, and cDNA to peptide
2096      * the mappings are on the shared alignment dataset
2097      */
2098     List<AlignedCodonFrame> cdsMappings = cds.getDataset().getCodonFrames();
2099     /*
2100      * 6 mappings, 2*(DNA->CDS), 2*(DNA->Pep), 2*(CDS->Pep) 
2101      */
2102     assertEquals(6, cdsMappings.size());
2103
2104     /*
2105      * verify that mapping sets for dna and cds alignments are different
2106      * [not current behaviour - all mappings are on the alignment dataset]  
2107      */
2108     // select -> subselect type to test.
2109     // Assert.assertNotSame(dna.getCodonFrames(), cds.getCodonFrames());
2110     // assertEquals(4, dna.getCodonFrames().size());
2111     // assertEquals(4, cds.getCodonFrames().size());
2112
2113     /*
2114      * Two mappings involve pep3 (dna to pep3, cds to pep3)
2115      * Mapping from pep3 to GGGTTT in first new exon sequence
2116      */
2117     List<AlignedCodonFrame> pep3Mappings = MappingUtils
2118             .findMappingsForSequence(pep3, cdsMappings);
2119     assertEquals(2, pep3Mappings.size());
2120     List<AlignedCodonFrame> mappings = MappingUtils
2121             .findMappingsForSequence(cds.getSequenceAt(0), pep3Mappings);
2122     assertEquals(1, mappings.size());
2123
2124     // map G to GGG
2125     SearchResultsI sr = MappingUtils.buildSearchResults(pep3, 1, mappings);
2126     assertEquals(1, sr.getResults().size());
2127     SearchResultMatchI m = sr.getResults().get(0);
2128     assertSame(cds.getSequenceAt(0).getDatasetSequence(), m.getSequence());
2129     assertEquals(1, m.getStart());
2130     assertEquals(3, m.getEnd());
2131     // map F to TTT
2132     sr = MappingUtils.buildSearchResults(pep3, 2, mappings);
2133     m = sr.getResults().get(0);
2134     assertSame(cds.getSequenceAt(0).getDatasetSequence(), m.getSequence());
2135     assertEquals(4, m.getStart());
2136     assertEquals(6, m.getEnd());
2137
2138     /*
2139      * Two mappings involve pep4 (dna to pep4, cds to pep4)
2140      * Verify mapping from pep4 to GGGTTTCCC in second new exon sequence
2141      */
2142     List<AlignedCodonFrame> pep4Mappings = MappingUtils
2143             .findMappingsForSequence(pep4, cdsMappings);
2144     assertEquals(2, pep4Mappings.size());
2145     mappings = MappingUtils.findMappingsForSequence(cds.getSequenceAt(1),
2146             pep4Mappings);
2147     assertEquals(1, mappings.size());
2148     // map G to GGG
2149     sr = MappingUtils.buildSearchResults(pep4, 1, mappings);
2150     assertEquals(1, sr.getResults().size());
2151     m = sr.getResults().get(0);
2152     assertSame(cds.getSequenceAt(1).getDatasetSequence(), m.getSequence());
2153     assertEquals(1, m.getStart());
2154     assertEquals(3, m.getEnd());
2155     // map F to TTT
2156     sr = MappingUtils.buildSearchResults(pep4, 2, mappings);
2157     m = sr.getResults().get(0);
2158     assertSame(cds.getSequenceAt(1).getDatasetSequence(), m.getSequence());
2159     assertEquals(4, m.getStart());
2160     assertEquals(6, m.getEnd());
2161     // map P to CCC
2162     sr = MappingUtils.buildSearchResults(pep4, 3, mappings);
2163     m = sr.getResults().get(0);
2164     assertSame(cds.getSequenceAt(1).getDatasetSequence(), m.getSequence());
2165     assertEquals(7, m.getStart());
2166     assertEquals(9, m.getEnd());
2167   }
2168
2169   /**
2170    * Test the method that just copies aligned sequences, provided all sequences
2171    * to be aligned share the aligned sequence's dataset
2172    */
2173   @Test(groups = "Functional")
2174   public void testAlignAsSameSequences()
2175   {
2176     SequenceI dna1 = new Sequence("dna1", "cccGGGTTTaaa");
2177     SequenceI dna2 = new Sequence("dna2", "CCCgggtttAAA");
2178     AlignmentI al1 = new Alignment(new SequenceI[] { dna1, dna2 });
2179     ((Alignment) al1).createDatasetAlignment();
2180
2181     SequenceI dna3 = new Sequence(dna1);
2182     SequenceI dna4 = new Sequence(dna2);
2183     assertSame(dna3.getDatasetSequence(), dna1.getDatasetSequence());
2184     assertSame(dna4.getDatasetSequence(), dna2.getDatasetSequence());
2185     String seq1 = "-cc-GG-GT-TT--aaa";
2186     dna3.setSequence(seq1);
2187     String seq2 = "C--C-Cgg--gtt-tAA-A-";
2188     dna4.setSequence(seq2);
2189     AlignmentI al2 = new Alignment(new SequenceI[] { dna3, dna4 });
2190     ((Alignment) al2).createDatasetAlignment();
2191
2192     /*
2193      * alignment removes gapped columns (two internal, two trailing)
2194      */
2195     assertTrue(AlignmentUtils.alignAsSameSequences(al1, al2));
2196     String aligned1 = "-cc-GG-GTTT-aaa";
2197     assertEquals(aligned1,
2198             al1.getSequenceAt(0).getSequenceAsString());
2199     String aligned2 = "C--C-Cgg-gtttAAA";
2200     assertEquals(aligned2,
2201             al1.getSequenceAt(1).getSequenceAsString());
2202
2203     /*
2204      * add another sequence to 'aligned' - should still succeed, since
2205      * unaligned sequences still share a dataset with aligned sequences
2206      */
2207     SequenceI dna5 = new Sequence("dna5", "CCCgggtttAAA");
2208     dna5.createDatasetSequence();
2209     al2.addSequence(dna5);
2210     assertTrue(AlignmentUtils.alignAsSameSequences(al1, al2));
2211     assertEquals(aligned1, al1.getSequenceAt(0).getSequenceAsString());
2212     assertEquals(aligned2, al1.getSequenceAt(1).getSequenceAsString());
2213
2214     /*
2215      * add another sequence to 'unaligned' - should fail, since now not
2216      * all unaligned sequences share a dataset with aligned sequences
2217      */
2218     SequenceI dna6 = new Sequence("dna6", "CCCgggtttAAA");
2219     dna6.createDatasetSequence();
2220     al1.addSequence(dna6);
2221     // JAL-2110 JBP Comment: what's the use case for this behaviour ?
2222     assertFalse(AlignmentUtils.alignAsSameSequences(al1, al2));
2223   }
2224
2225   @Test(groups = "Functional")
2226   public void testAlignAsSameSequencesMultipleSubSeq()
2227   {
2228     SequenceI dna1 = new Sequence("dna1", "cccGGGTTTaaa");
2229     SequenceI dna2 = new Sequence("dna2", "CCCgggtttAAA");
2230     SequenceI as1 = dna1.deriveSequence(); // cccGGGTTTaaa/1-12
2231     SequenceI as2 = dna1.deriveSequence().getSubSequence(3, 7); // GGGT/4-7
2232     SequenceI as3 = dna2.deriveSequence(); // CCCgggtttAAA/1-12
2233     as1.insertCharAt(6, 5, '-');
2234     assertEquals("cccGGG-----TTTaaa", as1.getSequenceAsString());
2235     as2.insertCharAt(6, 5, '-');
2236     assertEquals("GGGT-----", as2.getSequenceAsString());
2237     as3.insertCharAt(3, 5, '-');
2238     assertEquals("CCC-----gggtttAAA", as3.getSequenceAsString());
2239     AlignmentI aligned = new Alignment(new SequenceI[] { as1, as2, as3 });
2240
2241     // why do we need to cast this still ?
2242     ((Alignment) aligned).createDatasetAlignment();
2243     SequenceI uas1 = dna1.deriveSequence();
2244     SequenceI uas2 = dna1.deriveSequence().getSubSequence(3, 7);
2245     SequenceI uas3 = dna2.deriveSequence();
2246     AlignmentI tobealigned = new Alignment(new SequenceI[] { uas1, uas2,
2247         uas3 });
2248     ((Alignment) tobealigned).createDatasetAlignment();
2249
2250     /*
2251      * alignAs lines up dataset sequences and removes empty columns (two)
2252      */
2253     assertTrue(AlignmentUtils.alignAsSameSequences(tobealigned, aligned));
2254     assertEquals("cccGGG---TTTaaa", uas1.getSequenceAsString());
2255     assertEquals("GGGT", uas2.getSequenceAsString());
2256     assertEquals("CCC---gggtttAAA", uas3.getSequenceAsString());
2257   }
2258
2259   @Test(groups = { "Functional" })
2260   public void testTransferGeneLoci()
2261   {
2262     SequenceI from = new Sequence("transcript",
2263             "aaacccgggTTTAAACCCGGGtttaaacccgggttt");
2264     SequenceI to = new Sequence("CDS", "TTTAAACCCGGG");
2265     MapList map = new MapList(new int[] { 1, 12 }, new int[] { 10, 21 }, 1,
2266             1);
2267
2268     /*
2269      * first with nothing to transfer
2270      */
2271     AlignmentUtils.transferGeneLoci(from, map, to);
2272     assertNull(to.getGeneLoci());
2273
2274     /*
2275      * next with gene loci set on 'from' sequence
2276      */
2277     int[] exons = new int[] { 100, 105, 155, 164, 210, 229 };
2278     MapList geneMap = new MapList(new int[] { 1, 36 }, exons, 1, 1);
2279     from.setGeneLoci("human", "GRCh38", "7", geneMap);
2280     AlignmentUtils.transferGeneLoci(from, map, to);
2281
2282     GeneLociI toLoci = to.getGeneLoci();
2283     assertNotNull(toLoci);
2284     // DBRefEntry constructor upper-cases 'source'
2285     assertEquals("HUMAN", toLoci.getSpeciesId());
2286     assertEquals("GRCh38", toLoci.getAssemblyId());
2287     assertEquals("7", toLoci.getChromosomeId());
2288
2289     /*
2290      * transcript 'exons' are 1-6, 7-16, 17-36
2291      * CDS 1:12 is transcript 10-21
2292      * transcript 'CDS' is 10-16, 17-21
2293      * which is 'gene' 158-164, 210-214
2294      */
2295     MapList toMap = toLoci.getMapping();
2296     assertEquals(1, toMap.getFromRanges().size());
2297     assertEquals(2, toMap.getFromRanges().get(0).length);
2298     assertEquals(1, toMap.getFromRanges().get(0)[0]);
2299     assertEquals(12, toMap.getFromRanges().get(0)[1]);
2300     assertEquals(2, toMap.getToRanges().size());
2301     assertEquals(2, toMap.getToRanges().get(0).length);
2302     assertEquals(158, toMap.getToRanges().get(0)[0]);
2303     assertEquals(164, toMap.getToRanges().get(0)[1]);
2304     assertEquals(210, toMap.getToRanges().get(1)[0]);
2305     assertEquals(214, toMap.getToRanges().get(1)[1]);
2306     // or summarised as (but toString might change in future):
2307     assertEquals("[ [1, 12] ] 1:1 to [ [158, 164] [210, 214] ]",
2308             toMap.toString());
2309
2310     /*
2311      * an existing value is not overridden 
2312      */
2313     geneMap = new MapList(new int[] { 1, 36 }, new int[] { 36, 1 }, 1, 1);
2314     from.setGeneLoci("inhuman", "GRCh37", "6", geneMap);
2315     AlignmentUtils.transferGeneLoci(from, map, to);
2316     assertEquals("GRCh38", toLoci.getAssemblyId());
2317     assertEquals("7", toLoci.getChromosomeId());
2318     toMap = toLoci.getMapping();
2319     assertEquals("[ [1, 12] ] 1:1 to [ [158, 164] [210, 214] ]",
2320             toMap.toString());
2321   }
2322
2323   /**
2324    * Tests for the method that maps nucleotide to protein based on CDS features
2325    */
2326   @Test(groups = "Functional")
2327   public void testMapCdsToProtein()
2328   {
2329     SequenceI peptide = new Sequence("pep", "KLQ");
2330
2331     /*
2332      * Case 1: CDS 3 times length of peptide
2333      * NB method only checks lengths match, not translation
2334      */
2335     SequenceI dna = new Sequence("dna", "AACGacgtCTCCT");
2336     dna.createDatasetSequence();
2337     dna.addSequenceFeature(new SequenceFeature("CDS", "", 1, 4, null));
2338     dna.addSequenceFeature(new SequenceFeature("CDS", "", 9, 13, null));
2339     MapList ml = AlignmentUtils.mapCdsToProtein(dna, peptide);
2340     assertEquals(3, ml.getFromRatio());
2341     assertEquals(1, ml.getToRatio());
2342     assertEquals("[[1, 3]]",
2343             Arrays.deepToString(ml.getToRanges().toArray()));
2344     assertEquals("[[1, 4], [9, 13]]",
2345             Arrays.deepToString(ml.getFromRanges().toArray()));
2346
2347     /*
2348      * Case 2: CDS 3 times length of peptide + stop codon
2349      * (note code does not currently check trailing codon is a stop codon)
2350      */
2351     dna = new Sequence("dna", "AACGacgtCTCCTCCC");
2352     dna.createDatasetSequence();
2353     dna.addSequenceFeature(new SequenceFeature("CDS", "", 1, 4, null));
2354     dna.addSequenceFeature(new SequenceFeature("CDS", "", 9, 16, null));
2355     ml = AlignmentUtils.mapCdsToProtein(dna, peptide);
2356     assertEquals(3, ml.getFromRatio());
2357     assertEquals(1, ml.getToRatio());
2358     assertEquals("[[1, 3]]",
2359             Arrays.deepToString(ml.getToRanges().toArray()));
2360     assertEquals("[[1, 4], [9, 13]]",
2361             Arrays.deepToString(ml.getFromRanges().toArray()));
2362
2363     /*
2364      * Case 3: CDS longer than 3 * peptide + stop codon - no mapping is made
2365      */
2366     dna = new Sequence("dna", "AACGacgtCTCCTTGATCA");
2367     dna.createDatasetSequence();
2368     dna.addSequenceFeature(new SequenceFeature("CDS", "", 1, 4, null));
2369     dna.addSequenceFeature(new SequenceFeature("CDS", "", 9, 19, null));
2370     ml = AlignmentUtils.mapCdsToProtein(dna, peptide);
2371     assertNull(ml);
2372
2373     /*
2374      * Case 4: CDS shorter than 3 * peptide - no mapping is made
2375      */
2376     dna = new Sequence("dna", "AACGacgtCTCC");
2377     dna.createDatasetSequence();
2378     dna.addSequenceFeature(new SequenceFeature("CDS", "", 1, 4, null));
2379     dna.addSequenceFeature(new SequenceFeature("CDS", "", 9, 12, null));
2380     ml = AlignmentUtils.mapCdsToProtein(dna, peptide);
2381     assertNull(ml);
2382
2383     /*
2384      * Case 5: CDS 3 times length of peptide + part codon - mapping is truncated
2385      */
2386     dna = new Sequence("dna", "AACGacgtCTCCTTG");
2387     dna.createDatasetSequence();
2388     dna.addSequenceFeature(new SequenceFeature("CDS", "", 1, 4, null));
2389     dna.addSequenceFeature(new SequenceFeature("CDS", "", 9, 15, null));
2390     ml = AlignmentUtils.mapCdsToProtein(dna, peptide);
2391     assertEquals(3, ml.getFromRatio());
2392     assertEquals(1, ml.getToRatio());
2393     assertEquals("[[1, 3]]",
2394             Arrays.deepToString(ml.getToRanges().toArray()));
2395     assertEquals("[[1, 4], [9, 13]]",
2396             Arrays.deepToString(ml.getFromRanges().toArray()));
2397
2398     /*
2399      * Case 6: incomplete start codon corresponding to X in peptide
2400      */
2401     dna = new Sequence("dna", "ACGacgtCTCCTTGG");
2402     dna.createDatasetSequence();
2403     SequenceFeature sf = new SequenceFeature("CDS", "", 1, 3, null);
2404     sf.setPhase("2"); // skip 2 positions (AC) to start of next codon (GCT)
2405     dna.addSequenceFeature(sf);
2406     dna.addSequenceFeature(new SequenceFeature("CDS", "", 8, 15, null));
2407     peptide = new Sequence("pep", "XLQ");
2408     ml = AlignmentUtils.mapCdsToProtein(dna, peptide);
2409     assertEquals("[[2, 3]]",
2410             Arrays.deepToString(ml.getToRanges().toArray()));
2411     assertEquals("[[3, 3], [8, 12]]",
2412             Arrays.deepToString(ml.getFromRanges().toArray()));
2413   }
2414
2415   /**
2416    * Tests for the method that locates the CDS sequence that has a mapping to
2417    * the given protein. That is, given a transcript-to-peptide mapping, find the
2418    * cds-to-peptide mapping that relates to both, and return the CDS sequence.
2419    */
2420   @Test
2421   public void testFindCdsForProtein()
2422   {
2423     List<AlignedCodonFrame> mappings = new ArrayList<>();
2424     AlignedCodonFrame acf1 = new AlignedCodonFrame();
2425     mappings.add(acf1);
2426
2427     SequenceI dna1 = new Sequence("dna1", "cgatATcgGCTATCTATGacg");
2428     dna1.createDatasetSequence();
2429
2430     // NB we currently exclude STOP codon from CDS sequences
2431     // the test would need to change if this changes in future
2432     SequenceI cds1 = new Sequence("cds1", "ATGCTATCT");
2433     cds1.createDatasetSequence();
2434
2435     SequenceI pep1 = new Sequence("pep1", "MLS");
2436     pep1.createDatasetSequence();
2437     List<AlignedCodonFrame> seqMappings = new ArrayList<>();
2438     MapList mapList = new MapList(
2439             new int[]
2440             { 5, 6, 9, 15 }, new int[] { 1, 3 }, 3, 1);
2441     Mapping dnaToPeptide = new Mapping(pep1.getDatasetSequence(), mapList);
2442     
2443     // add dna to peptide mapping
2444     seqMappings.add(acf1);
2445     acf1.addMap(dna1.getDatasetSequence(), pep1.getDatasetSequence(),
2446             mapList);
2447
2448     /*
2449      * first case - no dna-to-CDS mapping exists - search fails
2450      */
2451     SequenceI seq = AlignmentUtils.findCdsForProtein(mappings, dna1,
2452             seqMappings, dnaToPeptide);
2453     assertNull(seq);
2454
2455     /*
2456      * second case - CDS-to-peptide mapping exists but no dna-to-CDS
2457      * - search fails
2458      */
2459     // todo this test fails if the mapping is added to acf1, not acf2
2460     // need to tidy up use of lists of mappings in AlignedCodonFrame
2461     AlignedCodonFrame acf2 = new AlignedCodonFrame();
2462     mappings.add(acf2);
2463     MapList cdsToPeptideMapping = new MapList(new int[]
2464     { 1, 9 }, new int[] { 1, 3 }, 3, 1);
2465     acf2.addMap(cds1.getDatasetSequence(), pep1.getDatasetSequence(),
2466             cdsToPeptideMapping);
2467     assertNull(AlignmentUtils.findCdsForProtein(mappings, dna1, seqMappings,
2468             dnaToPeptide));
2469
2470     /*
2471      * third case - add dna-to-CDS mapping - CDS is now found!
2472      */
2473     MapList dnaToCdsMapping = new MapList(new int[] { 5, 6, 9, 15 },
2474             new int[]
2475             { 1, 9 }, 1, 1);
2476     acf1.addMap(dna1.getDatasetSequence(), cds1.getDatasetSequence(),
2477             dnaToCdsMapping);
2478     seq = AlignmentUtils.findCdsForProtein(mappings, dna1, seqMappings,
2479             dnaToPeptide);
2480     assertSame(seq, cds1.getDatasetSequence());
2481   }
2482
2483   /**
2484    * Tests for the method that locates the CDS sequence that has a mapping to
2485    * the given protein. That is, given a transcript-to-peptide mapping, find the
2486    * cds-to-peptide mapping that relates to both, and return the CDS sequence.
2487    * This test is for the case where transcript and CDS are the same length.
2488    */
2489   @Test
2490   public void testFindCdsForProtein_noUTR()
2491   {
2492     List<AlignedCodonFrame> mappings = new ArrayList<>();
2493     AlignedCodonFrame acf1 = new AlignedCodonFrame();
2494     mappings.add(acf1);
2495   
2496     SequenceI dna1 = new Sequence("dna1", "ATGCTATCTTAA");
2497     dna1.createDatasetSequence();
2498   
2499     // NB we currently exclude STOP codon from CDS sequences
2500     // the test would need to change if this changes in future
2501     SequenceI cds1 = new Sequence("cds1", "ATGCTATCT");
2502     cds1.createDatasetSequence();
2503   
2504     SequenceI pep1 = new Sequence("pep1", "MLS");
2505     pep1.createDatasetSequence();
2506     List<AlignedCodonFrame> seqMappings = new ArrayList<>();
2507     MapList mapList = new MapList(
2508             new int[]
2509             { 1, 9 }, new int[] { 1, 3 }, 3, 1);
2510     Mapping dnaToPeptide = new Mapping(pep1.getDatasetSequence(), mapList);
2511     
2512     // add dna to peptide mapping
2513     seqMappings.add(acf1);
2514     acf1.addMap(dna1.getDatasetSequence(), pep1.getDatasetSequence(),
2515             mapList);
2516   
2517     /*
2518      * first case - transcript lacks CDS features - it appears to be
2519      * the CDS sequence and is returned
2520      */
2521     SequenceI seq = AlignmentUtils.findCdsForProtein(mappings, dna1,
2522             seqMappings, dnaToPeptide);
2523     assertSame(seq, dna1.getDatasetSequence());
2524   
2525     /*
2526      * second case - transcript has CDS feature - this means it is
2527      * not returned as a match for CDS (CDS sequences don't have CDS features)
2528      */
2529     dna1.addSequenceFeature(
2530             new SequenceFeature(SequenceOntologyI.CDS, "cds", 1, 12, null));
2531     seq = AlignmentUtils.findCdsForProtein(mappings, dna1, seqMappings,
2532             dnaToPeptide);
2533     assertNull(seq);
2534
2535     /*
2536      * third case - CDS-to-peptide mapping exists but no dna-to-CDS
2537      * - search fails
2538      */
2539     // todo this test fails if the mapping is added to acf1, not acf2
2540     // need to tidy up use of lists of mappings in AlignedCodonFrame
2541     AlignedCodonFrame acf2 = new AlignedCodonFrame();
2542     mappings.add(acf2);
2543     MapList cdsToPeptideMapping = new MapList(new int[]
2544     { 1, 9 }, new int[] { 1, 3 }, 3, 1);
2545     acf2.addMap(cds1.getDatasetSequence(), pep1.getDatasetSequence(),
2546             cdsToPeptideMapping);
2547     assertNull(AlignmentUtils.findCdsForProtein(mappings, dna1, seqMappings,
2548             dnaToPeptide));
2549   
2550     /*
2551      * fourth case - add dna-to-CDS mapping - CDS is now found!
2552      */
2553     MapList dnaToCdsMapping = new MapList(new int[] { 1, 9 },
2554             new int[]
2555             { 1, 9 }, 1, 1);
2556     acf1.addMap(dna1.getDatasetSequence(), cds1.getDatasetSequence(),
2557             dnaToCdsMapping);
2558     seq = AlignmentUtils.findCdsForProtein(mappings, dna1, seqMappings,
2559             dnaToPeptide);
2560     assertSame(seq, cds1.getDatasetSequence());
2561   }
2562 }