Merge branch 'task/JAL-3763_newDatasetForCds' into merge/develop_task/JAL-3763_newDat...
[jalview.git] / test / jalview / util / MapListTest.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.util;
22
23 import static org.testng.AssertJUnit.assertEquals;
24 import static org.testng.AssertJUnit.assertFalse;
25 import static org.testng.AssertJUnit.assertNull;
26 import static org.testng.AssertJUnit.assertSame;
27 import static org.testng.AssertJUnit.assertTrue;
28 import static org.testng.AssertJUnit.fail;
29 import static org.testng.internal.junit.ArrayAsserts.assertArrayEquals;
30
31 import java.util.ArrayList;
32 import java.util.Arrays;
33 import java.util.BitSet;
34 import java.util.List;
35
36 import org.testng.annotations.BeforeClass;
37 import org.testng.annotations.Test;
38
39 import jalview.bin.Cache;
40 import jalview.gui.JvOptionPane;
41
42 public class MapListTest
43 {
44   @BeforeClass(alwaysRun = true)
45   public void setUp()
46   {
47     Cache.initLogger();
48   }
49   
50   @BeforeClass(alwaysRun = true)
51   public void setUpJvOptionPane()
52   {
53     JvOptionPane.setInteractiveMode(false);
54     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
55   }
56
57   @Test(groups = { "Functional" }, enabled = false)
58   public void testSomething()
59   {
60     MapList ml = new MapList(new int[] { 1, 5, 10, 15, 25, 20 },
61             new int[]
62             { 51, 1 }, 1, 3);
63     MapList ml1 = new MapList(new int[] { 1, 3, 17, 4 },
64             new int[]
65             { 51, 1 }, 1, 3);
66     MapList ml2 = new MapList(new int[] { 1, 60 }, new int[] { 1, 20 }, 3,
67             1);
68     // test internal consistency
69     int to[] = new int[51];
70     testMap(ml, 1, 60);
71     MapList mldna = new MapList(new int[] { 2, 2, 6, 8, 12, 16 },
72             new int[]
73             { 1, 3 }, 3, 1);
74     int[] frm = mldna.locateInFrom(1, 1);
75     testLocateFrom(mldna, 1, 1, new int[] { 2, 2, 6, 7 });
76     testMap(mldna, 1, 3);
77     /*
78      * for (int from=1; from<=51; from++) { int[] too=ml.shiftTo(from); int[]
79      * toofrom=ml.shiftFrom(too[0]);
80      * System.out.println("ShiftFrom("+from+")=="+too[0]+" %
81      * "+too[1]+"\t+-+\tShiftTo("+too[0]+")=="+toofrom[0]+" % "+toofrom[1]); }
82      */
83   }
84
85   private static void testLocateFrom(MapList mldna, int i, int j, int[] ks)
86   {
87     int[] frm = mldna.locateInFrom(i, j);
88     assertEquals("Failed test locate from " + i + " to " + j,
89             Arrays.toString(frm), Arrays.toString(ks));
90   }
91
92   /**
93    * test routine. not incremental.
94    * 
95    * @param ml
96    * @param fromS
97    * @param fromE
98    */
99   private void testMap(MapList ml, int fromS, int fromE)
100   {
101     // todo convert to JUnit style tests
102     for (int from = 1; from <= 25; from++)
103     {
104       int[] too = ml.shiftFrom(from);
105       System.out.print("ShiftFrom(" + from + ")==");
106       if (too == null)
107       {
108         System.out.print("NaN\n");
109       }
110       else
111       {
112         System.out.print(too[0] + " % " + too[1] + " (" + too[2] + ")");
113         System.out.print("\t+--+\t");
114         int[] toofrom = ml.shiftTo(too[0]);
115         if (toofrom != null)
116         {
117           if (toofrom[0] != from)
118           {
119             System.err.println("Mapping not reflexive:" + from + " "
120                     + too[0] + "->" + toofrom[0]);
121           }
122           System.out.println("ShiftTo(" + too[0] + ")==" + toofrom[0]
123                   + " % " + toofrom[1] + " (" + toofrom[2] + ")");
124         }
125         else
126         {
127           System.out.println("ShiftTo(" + too[0] + ")=="
128                   + "NaN! - not Bijective Mapping!");
129         }
130       }
131     }
132     int mmap[][] = ml.makeFromMap();
133     System.out.println("FromMap : (" + mmap[0][0] + " " + mmap[0][1] + " "
134             + mmap[0][2] + " " + mmap[0][3] + " ");
135     for (int i = 1; i <= mmap[1].length; i++)
136     {
137       if (mmap[1][i - 1] == -1)
138       {
139         System.out.print(i + "=XXX");
140
141       }
142       else
143       {
144         System.out.print(i + "=" + (mmap[0][2] + mmap[1][i - 1]));
145       }
146       if (i % 20 == 0)
147       {
148         System.out.print("\n");
149       }
150       else
151       {
152         System.out.print(",");
153       }
154     }
155     // test range function
156     System.out.print("\nTest locateInFrom\n");
157     {
158       int f = mmap[0][2], t = mmap[0][3];
159       while (f <= t)
160       {
161         System.out.println("Range " + f + " to " + t);
162         int rng[] = ml.locateInFrom(f, t);
163         if (rng != null)
164         {
165           for (int i = 0; i < rng.length; i++)
166           {
167             System.out.print(rng[i] + ((i % 2 == 0) ? "," : ";"));
168           }
169         }
170         else
171         {
172           System.out.println("No range!");
173         }
174         System.out.print("\nReversed\n");
175         rng = ml.locateInFrom(t, f);
176         if (rng != null)
177         {
178           for (int i = 0; i < rng.length; i++)
179           {
180             System.out.print(rng[i] + ((i % 2 == 0) ? "," : ";"));
181           }
182         }
183         else
184         {
185           System.out.println("No range!");
186         }
187         System.out.print("\n");
188         f++;
189         t--;
190       }
191     }
192     System.out.print("\n");
193     mmap = ml.makeToMap();
194     System.out.println("ToMap : (" + mmap[0][0] + " " + mmap[0][1] + " "
195             + mmap[0][2] + " " + mmap[0][3] + " ");
196     for (int i = 1; i <= mmap[1].length; i++)
197     {
198       if (mmap[1][i - 1] == -1)
199       {
200         System.out.print(i + "=XXX");
201
202       }
203       else
204       {
205         System.out.print(i + "=" + (mmap[0][2] + mmap[1][i - 1]));
206       }
207       if (i % 20 == 0)
208       {
209         System.out.print("\n");
210       }
211       else
212       {
213         System.out.print(",");
214       }
215     }
216     System.out.print("\n");
217     // test range function
218     System.out.print("\nTest locateInTo\n");
219     {
220       int f = mmap[0][2], t = mmap[0][3];
221       while (f <= t)
222       {
223         System.out.println("Range " + f + " to " + t);
224         int rng[] = ml.locateInTo(f, t);
225         if (rng != null)
226         {
227           for (int i = 0; i < rng.length; i++)
228           {
229             System.out.print(rng[i] + ((i % 2 == 0) ? "," : ";"));
230           }
231         }
232         else
233         {
234           System.out.println("No range!");
235         }
236         System.out.print("\nReversed\n");
237         rng = ml.locateInTo(t, f);
238         if (rng != null)
239         {
240           for (int i = 0; i < rng.length; i++)
241           {
242             System.out.print(rng[i] + ((i % 2 == 0) ? "," : ";"));
243           }
244         }
245         else
246         {
247           System.out.println("No range!");
248         }
249         f++;
250         t--;
251         System.out.print("\n");
252       }
253     }
254   }
255
256   /**
257    * Tests for method that locates ranges in the 'from' map for given range in
258    * the 'to' map.
259    */
260   @Test(groups = { "Functional" })
261   public void testLocateInFrom_noIntrons()
262   {
263     /*
264      * Simple mapping with no introns
265      */
266     int[] codons = new int[] { 1, 12 };
267     int[] protein = new int[] { 1, 4 };
268     MapList ml = new MapList(codons, protein, 3, 1);
269     assertEquals("[1, 3]", Arrays.toString(ml.locateInFrom(1, 1)));
270     assertEquals("[4, 6]", Arrays.toString(ml.locateInFrom(2, 2)));
271     assertEquals("[7, 9]", Arrays.toString(ml.locateInFrom(3, 3)));
272     assertEquals("[10, 12]", Arrays.toString(ml.locateInFrom(4, 4)));
273     assertEquals("[1, 6]", Arrays.toString(ml.locateInFrom(1, 2)));
274     assertEquals("[1, 9]", Arrays.toString(ml.locateInFrom(1, 3)));
275     // reversed range treated as if forwards:
276     assertEquals("[1, 9]", Arrays.toString(ml.locateInFrom(3, 1)));
277     assertEquals("[1, 12]", Arrays.toString(ml.locateInFrom(1, 4)));
278     assertEquals("[4, 9]", Arrays.toString(ml.locateInFrom(2, 3)));
279     assertEquals("[4, 12]", Arrays.toString(ml.locateInFrom(2, 4)));
280     assertEquals("[7, 12]", Arrays.toString(ml.locateInFrom(3, 4)));
281     assertEquals("[10, 12]", Arrays.toString(ml.locateInFrom(4, 4)));
282
283     /*
284      * partial overlap
285      */
286     assertEquals("[1, 12]", Arrays.toString(ml.locateInFrom(1, 5)));
287     assertEquals("[1, 3]", Arrays.toString(ml.locateInFrom(-1, 1)));
288
289     /*
290      * no overlap
291      */
292     assertNull(ml.locateInFrom(0, 0));
293     
294   }
295
296   /**
297    * Tests for method that locates ranges in the 'from' map for given range in
298    * the 'to' map.
299    */
300   @Test(groups = { "Functional" })
301   public void testLocateInFrom_withIntrons()
302   {
303     /*
304      * Exons at positions [2, 3, 5] [6, 7, 9] [10, 12, 14] [16, 17, 18] i.e.
305      * 2-3, 5-7, 9-10, 12-12, 14-14, 16-18
306      */
307     int[] codons = { 2, 3, 5, 7, 9, 10, 12, 12, 14, 14, 16, 18 };
308     int[] protein = { 1, 4 };
309     MapList ml = new MapList(codons, protein, 3, 1);
310     assertEquals("[2, 3, 5, 5]", Arrays.toString(ml.locateInFrom(1, 1)));
311     assertEquals("[6, 7, 9, 9]", Arrays.toString(ml.locateInFrom(2, 2)));
312     assertEquals("[10, 10, 12, 12, 14, 14]",
313             Arrays.toString(ml.locateInFrom(3, 3)));
314     assertEquals("[16, 18]", Arrays.toString(ml.locateInFrom(4, 4)));
315     
316     /*
317      * codons at 11-16, 21-26, 31-36 mapped to peptide positions 1, 3-4, 6-8
318      */
319     ml = new MapList(new int[] { 11, 16, 21, 26, 31, 36 },
320             new int[]
321             { 1, 1, 3, 4, 6, 8 }, 3, 1);
322     assertArrayEquals(new int[] { 11, 13 }, ml.locateInFrom(1, 1));
323     assertArrayEquals(new int[] { 11, 16 }, ml.locateInFrom(1, 3));
324     assertArrayEquals(new int[] { 11, 16, 21, 23 }, ml.locateInFrom(1, 4));
325     assertArrayEquals(new int[] { 14, 16, 21, 23 }, ml.locateInFrom(3, 4));
326
327   }
328
329   @Test(groups = { "Functional" })
330   public void testLocateInFrom_reverseStrand()
331   {
332     int[] codons = new int[] { 12, 1 };
333     int[] protein = new int[] { 1, 4 };
334     MapList ml = new MapList(codons, protein, 3, 1);
335     assertEquals("[12, 10]", Arrays.toString(ml.locateInFrom(1, 1)));
336     assertEquals("[9, 4]", Arrays.toString(ml.locateInFrom(2, 3)));
337   }
338
339   /**
340    * Tests for method that locates ranges in the 'to' map for given range in the
341    * 'from' map.
342    */
343   @Test(groups = { "Functional" })
344   public void testLocateInTo_noIntrons()
345   {
346     /*
347      * Simple mapping with no introns
348      */
349     int[] codons = new int[] { 1, 12 };
350     int[] protein = new int[] { 1, 4 };
351     MapList ml = new MapList(codons, protein, 3, 1);
352     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(1, 3)));
353     assertEquals("[2, 2]", Arrays.toString(ml.locateInTo(4, 6)));
354     assertEquals("[3, 3]", Arrays.toString(ml.locateInTo(7, 9)));
355     assertEquals("[4, 4]", Arrays.toString(ml.locateInTo(10, 12)));
356     assertEquals("[1, 2]", Arrays.toString(ml.locateInTo(1, 6)));
357     assertEquals("[1, 3]", Arrays.toString(ml.locateInTo(1, 9)));
358     assertEquals("[1, 4]", Arrays.toString(ml.locateInTo(1, 12)));
359     assertEquals("[2, 2]", Arrays.toString(ml.locateInTo(4, 6)));
360     assertEquals("[2, 4]", Arrays.toString(ml.locateInTo(4, 12)));
361     // reverse range treated as if forwards:
362     assertEquals("[2, 4]", Arrays.toString(ml.locateInTo(12, 4)));
363
364     /*
365      * A part codon is treated as if a whole one.
366      */
367     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(1, 1)));
368     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(1, 2)));
369     assertEquals("[1, 2]", Arrays.toString(ml.locateInTo(1, 4)));
370     assertEquals("[1, 3]", Arrays.toString(ml.locateInTo(2, 8)));
371     assertEquals("[1, 4]", Arrays.toString(ml.locateInTo(3, 11)));
372     assertEquals("[2, 4]", Arrays.toString(ml.locateInTo(5, 11)));
373
374     /*
375      * partial overlap
376      */
377     assertEquals("[1, 4]", Arrays.toString(ml.locateInTo(1, 13)));
378     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(-1, 2)));
379     
380     /*
381      * no overlap
382      */
383     assertNull(ml.locateInTo(0, 0));
384   }
385
386   /**
387    * Tests for method that locates ranges in the 'to' map for given range in the
388    * 'from' map.
389    */
390   @Test(groups = { "Functional" })
391   public void testLocateInTo_withIntrons()
392   {
393     /*
394      * Exons at positions [2, 3, 5] [6, 7, 9] [10, 12, 14] [16, 17, 18] i.e.
395      * 2-3, 5-7, 9-10, 12-12, 14-14, 16-18
396      */
397     int[] codons = { 2, 3, 5, 7, 9, 10, 12, 12, 14, 14, 16, 18 };
398     /*
399      * Mapped proteins at positions 1, 3, 4, 6 in the sequence
400      */
401     int[] protein = { 1, 1, 3, 4, 6, 6 };
402     MapList ml = new MapList(codons, protein, 3, 1);
403
404     /*
405      * Valid range or subrange of codon1 maps to protein1
406      */
407     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(2, 2)));
408     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(3, 3)));
409     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(3, 5)));
410     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(2, 3)));
411     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(2, 5)));
412
413     // codon position 6 starts the next protein:
414     assertEquals("[1, 1, 3, 3]", Arrays.toString(ml.locateInTo(3, 6)));
415
416     // codon positions 7 to 17 (part) cover proteins 2/3/4 at positions 3/4/6
417     assertEquals("[3, 4, 6, 6]", Arrays.toString(ml.locateInTo(7, 17)));
418
419     /*
420      * partial overlap
421      */
422     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(1, 2)));
423     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(1, 4)));
424     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(2, 4)));
425     
426     /*
427      * no overlap
428      */
429     assertNull(ml.locateInTo(4, 4));
430   }
431
432   /**
433    * Test equals method.
434    */
435   @Test(groups = { "Functional" })
436   public void testEquals()
437   {
438     int[] codons = new int[] { 2, 3, 5, 7, 9, 10, 12, 12, 14, 14, 16, 18 };
439     int[] protein = new int[] { 1, 4 };
440     MapList ml = new MapList(codons, protein, 3, 1);
441     MapList ml1 = new MapList(codons, protein, 3, 1); // same values
442     MapList ml2 = new MapList(codons, protein, 2, 1); // fromRatio differs
443     MapList ml3 = new MapList(codons, protein, 3, 2); // toRatio differs
444     codons[2] = 4;
445     MapList ml6 = new MapList(codons, protein, 3, 1); // fromShifts differ
446     protein[1] = 3;
447     MapList ml7 = new MapList(codons, protein, 3, 1); // toShifts differ
448
449     assertTrue(ml.equals(ml));
450     assertEquals(ml.hashCode(), ml.hashCode());
451     assertTrue(ml.equals(ml1));
452     assertEquals(ml.hashCode(), ml1.hashCode());
453     assertTrue(ml1.equals(ml));
454
455     assertFalse(ml.equals(null));
456     assertFalse(ml.equals("hello"));
457     assertFalse(ml.equals(ml2));
458     assertFalse(ml.equals(ml3));
459     assertFalse(ml.equals(ml6));
460     assertFalse(ml.equals(ml7));
461     assertFalse(ml6.equals(ml7));
462
463     try
464     {
465       MapList ml4 = new MapList(codons, null, 3, 1); // toShifts null
466       assertFalse(ml.equals(ml4));
467     } catch (NullPointerException e)
468     {
469       // actually thrown by constructor before equals can be called
470     }
471     try
472     {
473       MapList ml5 = new MapList(null, protein, 3, 1); // fromShifts null
474       assertFalse(ml.equals(ml5));
475     } catch (NullPointerException e)
476     {
477       // actually thrown by constructor before equals can be called
478     }
479   }
480
481   /**
482    * Test for the method that flattens a list of ranges into a single array.
483    */
484   @Test(groups = { "Functional" })
485   public void testGetRanges()
486   {
487     List<int[]> ranges = new ArrayList<>();
488     ranges.add(new int[] { 2, 3 });
489     ranges.add(new int[] { 5, 6 });
490     assertEquals("[2, 3, 5, 6]",
491             Arrays.toString(MapList.getRanges(ranges)));
492   }
493
494   /**
495    * Check state after construction
496    */
497   @Test(groups = { "Functional" })
498   public void testConstructor()
499   {
500     int[] codons = { 2, 3, 5, 7, 9, 10, 12, 12, 14, 14, 16, 18 };
501     int[] protein = { 1, 1, 3, 4, 6, 6 };
502     MapList ml = new MapList(codons, protein, 3, 1);
503     assertEquals(3, ml.getFromRatio());
504     assertEquals(2, ml.getFromLowest());
505     assertEquals(18, ml.getFromHighest());
506     assertEquals(1, ml.getToLowest());
507     assertEquals(6, ml.getToHighest());
508     assertEquals("{[2, 3], [5, 7], [9, 10], [12, 12], [14, 14], [16, 18]}",
509             prettyPrint(ml.getFromRanges()));
510     assertEquals("{[1, 1], [3, 4], [6, 6]}", prettyPrint(ml.getToRanges()));
511
512     /*
513      * Also copy constructor
514      */
515     MapList ml2 = new MapList(ml);
516     assertEquals(3, ml2.getFromRatio());
517     assertEquals(2, ml2.getFromLowest());
518     assertEquals(18, ml2.getFromHighest());
519     assertEquals(1, ml2.getToLowest());
520     assertEquals(6, ml2.getToHighest());
521     assertEquals("{[2, 3], [5, 7], [9, 10], [12, 12], [14, 14], [16, 18]}",
522             prettyPrint(ml2.getFromRanges()));
523     assertEquals("{[1, 1], [3, 4], [6, 6]}",
524             prettyPrint(ml2.getToRanges()));
525
526     /*
527      * reverse direction
528      */
529     codons = new int[] { 9, 6 };
530     protein = new int[] { 100, 91, 80, 79 };
531     ml = new MapList(codons, protein, 3, 1);
532     assertEquals(6, ml.getFromLowest());
533     assertEquals(9, ml.getFromHighest());
534     assertEquals(79, ml.getToLowest());
535     assertEquals(100, ml.getToHighest());
536   }
537
538   /**
539    * Test constructor used to merge consecutive ranges but now just leaves them
540    * as supplied (JAL-3751)
541    */
542   @Test(groups = { "Functional" })
543   public void testConstructor_mergeRanges()
544   {
545     int[] codons = { 2, 3, 3, 7, 9, 10, 12, 12, 13, 14, 16, 17 };
546     int[] protein = { 1, 1, 2, 3, 6, 6 };
547     MapList ml = new MapList(codons, protein, 3, 1);
548     assertEquals(3, ml.getFromRatio());
549     assertEquals(2, ml.getFromLowest());
550     assertEquals(17, ml.getFromHighest());
551     assertEquals(1, ml.getToLowest());
552     assertEquals(6, ml.getToHighest());
553     assertEquals("{[2, 3], [3, 7], [9, 10], [12, 12], [13, 14], [16, 17]}",
554             prettyPrint(ml.getFromRanges()));
555     assertEquals("{[1, 1], [2, 3], [6, 6]}", prettyPrint(ml.getToRanges()));
556   }
557
558   /**
559    * Convert a List of {[i, j], [k, l], ...} to "[[i, j], [k, l], ...]"
560    * 
561    * @param ranges
562    * @return
563    */
564   private String prettyPrint(List<int[]> ranges)
565   {
566     StringBuilder sb = new StringBuilder(ranges.size() * 5);
567     boolean first = true;
568     sb.append("{");
569     for (int[] range : ranges)
570     {
571       if (!first)
572       {
573         sb.append(", ");
574       }
575       sb.append(Arrays.toString(range));
576       first = false;
577     }
578     sb.append("}");
579     return sb.toString();
580   }
581
582   /**
583    * Test the method that creates an inverse mapping
584    */
585   @Test(groups = { "Functional" })
586   public void testGetInverse()
587   {
588     int[] codons = { 2, 3, 5, 7, 9, 10, 12, 12, 14, 14, 16, 18 };
589     int[] protein = { 1, 1, 3, 4, 6, 6 };
590
591     MapList ml = new MapList(codons, protein, 3, 1);
592     MapList ml2 = ml.getInverse();
593     assertEquals(ml.getFromRatio(), ml2.getToRatio());
594     assertEquals(ml.getFromRatio(), ml2.getToRatio());
595     assertEquals(ml.getToHighest(), ml2.getFromHighest());
596     assertEquals(ml.getFromHighest(), ml2.getToHighest());
597     assertEquals(prettyPrint(ml.getFromRanges()),
598             prettyPrint(ml2.getToRanges()));
599     assertEquals(prettyPrint(ml.getToRanges()),
600             prettyPrint(ml2.getFromRanges()));
601   }
602
603   @Test(groups = { "Functional" })
604   public void testToString()
605   {
606     MapList ml = new MapList(new int[] { 1, 5, 10, 15, 25, 20 },
607             new int[]
608             { 51, 1 }, 1, 3);
609     String s = ml.toString();
610     assertEquals("[ [1, 5] [10, 15] [25, 20] ] 1:3 to [ [51, 1] ]", s);
611   }
612
613   @Test(groups = { "Functional" })
614   public void testAddMapList()
615   {
616     MapList ml = new MapList(new int[] { 11, 15, 20, 25, 35, 30 },
617             new int[]
618             { 72, 22 }, 1, 3);
619     assertEquals(11, ml.getFromLowest());
620     assertEquals(35, ml.getFromHighest());
621     assertEquals(22, ml.getToLowest());
622     assertEquals(72, ml.getToHighest());
623
624     MapList ml2 = new MapList(new int[] { 2, 4, 37, 40 },
625             new int[]
626             { 12, 17, 78, 83, 88, 96 }, 1, 3);
627     ml.addMapList(ml2);
628     assertEquals(2, ml.getFromLowest());
629     assertEquals(40, ml.getFromHighest());
630     assertEquals(12, ml.getToLowest());
631     assertEquals(96, ml.getToHighest());
632
633     String s = ml.toString();
634     assertEquals(
635             "[ [11, 15] [20, 25] [35, 30] [2, 4] [37, 40] ] 1:3 to [ [72, 22] [12, 17] [78, 83] [88, 96] ]",
636             s);
637   }
638
639   /**
640    * Test that confirms adding a map twice does nothing
641    */
642   @Test(groups = { "Functional" })
643   public void testAddMapList_sameMap()
644   {
645     MapList ml = new MapList(new int[] { 11, 15, 20, 25, 35, 30 },
646             new int[]
647             { 72, 22 }, 1, 3);
648     String before = ml.toString();
649     ml.addMapList(ml);
650     assertEquals(before, ml.toString());
651     ml.addMapList(new MapList(ml));
652     assertEquals(before, ml.toString());
653   }
654
655   @Test(groups = { "Functional" })
656   public void testAddMapList_contiguous()
657   {
658     MapList ml = new MapList(new int[] { 11, 15 }, new int[] { 72, 58 }, 1,
659             3);
660
661     MapList ml2 = new MapList(new int[] { 15, 16 }, new int[] { 58, 53 }, 1,
662             3);
663     ml.addMapList(ml2);
664     assertEquals("[ [11, 16] ] 1:3 to [ [72, 53] ]", ml.toString());
665   }
666
667   @Test(groups = "Functional")
668   public void testAddRange()
669   {
670     int[] range = { 1, 5 };
671     List<int[]> ranges = new ArrayList<>();
672
673     // add to empty list:
674     MapList.addRange(range, ranges);
675     assertEquals(1, ranges.size());
676     assertSame(range, ranges.get(0));
677
678     // extend contiguous (same position):
679     MapList.addRange(new int[] { 5, 10 }, ranges);
680     assertEquals(1, ranges.size());
681     assertEquals(1, ranges.get(0)[0]);
682     assertEquals(10, ranges.get(0)[1]);
683
684     // extend contiguous (next position):
685     MapList.addRange(new int[] { 11, 15 }, ranges);
686     assertEquals(1, ranges.size());
687     assertEquals(1, ranges.get(0)[0]);
688     assertEquals(15, ranges.get(0)[1]);
689
690     // change direction: range is not merged:
691     MapList.addRange(new int[] { 16, 10 }, ranges);
692     assertEquals(2, ranges.size());
693     assertEquals(16, ranges.get(1)[0]);
694     assertEquals(10, ranges.get(1)[1]);
695
696     // extend reverse contiguous (same position):
697     MapList.addRange(new int[] { 10, 8 }, ranges);
698     assertEquals(2, ranges.size());
699     assertEquals(16, ranges.get(1)[0]);
700     assertEquals(8, ranges.get(1)[1]);
701
702     // extend reverse contiguous (next position):
703     MapList.addRange(new int[] { 7, 6 }, ranges);
704     assertEquals(2, ranges.size());
705     assertEquals(16, ranges.get(1)[0]);
706     assertEquals(6, ranges.get(1)[1]);
707
708     // change direction: range is not merged:
709     MapList.addRange(new int[] { 6, 9 }, ranges);
710     assertEquals(3, ranges.size());
711     assertEquals(6, ranges.get(2)[0]);
712     assertEquals(9, ranges.get(2)[1]);
713
714     // not contiguous: not merged
715     MapList.addRange(new int[] { 11, 12 }, ranges);
716     assertEquals(4, ranges.size());
717     assertEquals(11, ranges.get(3)[0]);
718     assertEquals(12, ranges.get(3)[1]);
719   }
720
721   /**
722    * Check state after construction
723    */
724   @Test(groups = { "Functional" })
725   public void testConstructor_withLists()
726   {
727     /*
728      * reverse direction
729      */
730     int[][] codons = new int[][] { { 9, 6 } };
731     int[][] protein = new int[][] { { 100, 91 }, { 80, 79 } };
732     MapList ml = new MapList(Arrays.asList(codons), Arrays.asList(protein),
733             3, 1);
734     assertEquals(6, ml.getFromLowest());
735     assertEquals(9, ml.getFromHighest());
736     assertEquals(79, ml.getToLowest());
737     assertEquals(100, ml.getToHighest());
738   }
739
740   /**
741    * Test that method that inspects for the (first) forward or reverse from
742    * range. Single position ranges are ignored.
743    */
744   @Test(groups = { "Functional" })
745   public void testIsFromForwardStrand()
746   {
747     // [3-9] declares forward strand
748     MapList ml = new MapList(new int[] { 2, 2, 3, 9, 12, 11 },
749             new int[]
750             { 20, 11 }, 1, 1);
751     assertTrue(ml.isFromForwardStrand());
752
753     // [11-5] declares reverse strand ([13-14] is ignored)
754     ml = new MapList(new int[] { 2, 2, 11, 5, 13, 14 },
755             new int[]
756             { 20, 11 }, 1, 1);
757     assertFalse(ml.isFromForwardStrand());
758
759     // all single position ranges - defaults to forward strand
760     ml = new MapList(new int[] { 2, 2, 4, 4, 6, 6 }, new int[] { 3, 1 }, 1,
761             1);
762     assertTrue(ml.isFromForwardStrand());
763   }
764
765   /**
766    * Test the method that merges contiguous ranges
767    */
768   @Test(groups = { "Functional" })
769   public void testCoalesceRanges()
770   {
771     assertNull(MapList.coalesceRanges(null));
772     List<int[]> ranges = new ArrayList<>();
773     assertSame(ranges, MapList.coalesceRanges(ranges));
774     ranges.add(new int[] { 1, 3 });
775     assertSame(ranges, MapList.coalesceRanges(ranges));
776
777     // add non-contiguous range:
778     ranges.add(new int[] { 5, 6 });
779     assertSame(ranges, MapList.coalesceRanges(ranges));
780
781     // 'contiguous' range in opposite direction is not merged:
782     ranges.add(new int[] { 7, 6 });
783     assertSame(ranges, MapList.coalesceRanges(ranges));
784
785     // merging in forward direction:
786     ranges.clear();
787     ranges.add(new int[] { 1, 3 });
788     ranges.add(new int[] { 4, 5 }); // contiguous
789     ranges.add(new int[] { 5, 5 }); // overlap!
790     ranges.add(new int[] { 6, 7 }); // contiguous
791     List<int[]> merged = MapList.coalesceRanges(ranges);
792     assertEquals(2, merged.size());
793     assertArrayEquals(new int[] { 1, 5 }, merged.get(0));
794     assertArrayEquals(new int[] { 5, 7 }, merged.get(1));
795     // verify input list is unchanged
796     assertEquals(4, ranges.size());
797     assertArrayEquals(new int[] { 1, 3 }, ranges.get(0));
798     assertArrayEquals(new int[] { 4, 5 }, ranges.get(1));
799     assertArrayEquals(new int[] { 5, 5 }, ranges.get(2));
800     assertArrayEquals(new int[] { 6, 7 }, ranges.get(3));
801
802     // merging in reverse direction:
803     ranges.clear();
804     ranges.add(new int[] { 7, 5 });
805     ranges.add(new int[] { 5, 4 }); // overlap
806     ranges.add(new int[] { 4, 4 }); // overlap
807     ranges.add(new int[] { 3, 1 }); // contiguous
808     merged = MapList.coalesceRanges(ranges);
809     assertEquals(3, merged.size());
810     assertArrayEquals(new int[] { 7, 5 }, merged.get(0));
811     assertArrayEquals(new int[] { 5, 4 }, merged.get(1));
812     assertArrayEquals(new int[] { 4, 1 }, merged.get(2));
813
814     // merging with switches of direction:
815     ranges.clear();
816     ranges.add(new int[] { 1, 3 });
817     ranges.add(new int[] { 4, 5 }); // contiguous
818     ranges.add(new int[] { 5, 5 }); // overlap
819     ranges.add(new int[] { 6, 6 }); // contiguous
820     ranges.add(new int[] { 12, 10 });
821     ranges.add(new int[] { 9, 8 }); // contiguous
822     ranges.add(new int[] { 8, 8 }); // overlap
823     ranges.add(new int[] { 7, 7 }); // contiguous
824     merged = MapList.coalesceRanges(ranges);
825     assertEquals(4, merged.size());
826     assertArrayEquals(new int[] { 1, 5 }, merged.get(0));
827     assertArrayEquals(new int[] { 5, 6 }, merged.get(1));
828     assertArrayEquals(new int[] { 12, 8 }, merged.get(2));
829     assertArrayEquals(new int[] { 8, 7 }, merged.get(3));
830     
831     // 'subsumed' ranges are preserved
832     ranges.clear();
833     ranges.add(new int[] { 10, 30 });
834     ranges.add(new int[] { 15, 25 }); 
835
836     merged = MapList.coalesceRanges(ranges);
837     assertEquals(2, merged.size());
838     assertArrayEquals(new int[] { 10, 30 }, merged.get(0));
839     assertArrayEquals(new int[] { 15, 25 }, merged.get(1));
840   }
841
842   /**
843    * Test the method that compounds ('traverses') two mappings
844    */
845   @Test(groups = "Functional")
846   public void testTraverse()
847   {
848     /*
849      * simple 1:1 plus 1:1 forwards
850      */
851     MapList ml1 = new MapList(new int[] { 3, 4, 8, 12 },
852             new int[]
853             { 5, 8, 11, 13 }, 1, 1);
854     assertEquals("{[3, 4], [8, 12]}", prettyPrint(ml1.getFromRanges()));
855     assertEquals("{[5, 8], [11, 13]}", prettyPrint(ml1.getToRanges()));
856
857     MapList ml2 = new MapList(new int[] { 1, 50 },
858             new int[]
859             { 40, 45, 70, 75, 90, 127 }, 1, 1);
860     assertEquals("{[1, 50]}", prettyPrint(ml2.getFromRanges()));
861     assertEquals("{[40, 45], [70, 75], [90, 127]}",
862             prettyPrint(ml2.getToRanges()));
863
864     MapList compound = ml1.traverse(ml2);
865
866     assertEquals(1, compound.getFromRatio());
867     assertEquals(1, compound.getToRatio());
868     List<int[]> fromRanges = compound.getFromRanges();
869     assertEquals(2, fromRanges.size());
870     assertArrayEquals(new int[] { 3, 4 }, fromRanges.get(0));
871     assertArrayEquals(new int[] { 8, 12 }, fromRanges.get(1));
872     List<int[]> toRanges = compound.getToRanges();
873     assertEquals(4, toRanges.size());
874     // 5-8 maps to 44-45,70-71
875     // 11-13 maps to 74-75,90
876     assertArrayEquals(new int[] { 44, 45 }, toRanges.get(0));
877     assertArrayEquals(new int[] { 70, 71 }, toRanges.get(1));
878     assertArrayEquals(new int[] { 74, 75 }, toRanges.get(2));
879     assertArrayEquals(new int[] { 90, 90 }, toRanges.get(3));
880
881     /*
882      * 1:1 over 1:1 backwards ('reverse strand')
883      */
884     ml1 = new MapList(new int[] { 1, 50 }, new int[] { 70, 119 }, 1, 1);
885     ml2 = new MapList(new int[] { 1, 500 },
886             new int[]
887             { 1000, 901, 600, 201 }, 1, 1);
888     compound = ml1.traverse(ml2);
889
890     assertEquals(1, compound.getFromRatio());
891     assertEquals(1, compound.getToRatio());
892     fromRanges = compound.getFromRanges();
893     assertEquals(1, fromRanges.size());
894     assertArrayEquals(new int[] { 1, 50 }, fromRanges.get(0));
895     toRanges = compound.getToRanges();
896     assertEquals(2, toRanges.size());
897     assertArrayEquals(new int[] { 931, 901 }, toRanges.get(0));
898     assertArrayEquals(new int[] { 600, 582}, toRanges.get(1));
899
900     /*
901      * 1:1 plus 1:3 should result in 1:3
902      */
903     ml1 = new MapList(new int[] { 1, 30 }, new int[] { 11, 40 }, 1, 1);
904     ml2 = new MapList(new int[] { 1, 100 }, new int[] { 1, 50, 91, 340 }, 1,
905             3);
906     compound = ml1.traverse(ml2);
907
908     assertEquals(1, compound.getFromRatio());
909     assertEquals(3, compound.getToRatio());
910     fromRanges = compound.getFromRanges();
911     assertEquals(1, fromRanges.size());
912     assertArrayEquals(new int[] { 1, 30 }, fromRanges.get(0));
913     // 11-40 maps to 31-50,91-160
914     toRanges = compound.getToRanges();
915     assertEquals(2, toRanges.size());
916     assertArrayEquals(new int[] { 31, 50 }, toRanges.get(0));
917     assertArrayEquals(new int[] { 91, 160 }, toRanges.get(1));
918
919     /*
920      * 3:1 plus 1:1 should result in 3:1
921      */
922     ml1 = new MapList(new int[] { 1, 30 }, new int[] { 11, 20 }, 3, 1);
923     ml2 = new MapList(new int[] { 1, 100 }, new int[] { 1, 15, 91, 175 }, 1,
924             1);
925     compound = ml1.traverse(ml2);
926
927     assertEquals(3, compound.getFromRatio());
928     assertEquals(1, compound.getToRatio());
929     fromRanges = compound.getFromRanges();
930     assertEquals(1, fromRanges.size());
931     assertArrayEquals(new int[] { 1, 30 }, fromRanges.get(0));
932     // 11-20 maps to 11-15, 91-95
933     toRanges = compound.getToRanges();
934     assertEquals(2, toRanges.size());
935     assertArrayEquals(new int[] { 11, 15 }, toRanges.get(0));
936     assertArrayEquals(new int[] { 91, 95 }, toRanges.get(1));
937
938     /*
939      * 1:3 plus 3:1 should result in 1:1
940      */
941     ml1 = new MapList(new int[] { 21, 40 }, new int[] { 13, 72 }, 1, 3);
942     ml2 = new MapList(new int[] { 1, 300 }, new int[] { 51, 70, 121, 200 },
943             3, 1);
944     compound = ml1.traverse(ml2);
945
946     assertEquals(1, compound.getFromRatio());
947     assertEquals(1, compound.getToRatio());
948     fromRanges = compound.getFromRanges();
949     assertEquals(1, fromRanges.size());
950     assertArrayEquals(new int[] { 21, 40 }, fromRanges.get(0));
951     // 13-72 maps 3:1 to 55-70, 121-124
952     toRanges = compound.getToRanges();
953     assertEquals(2, toRanges.size());
954     assertArrayEquals(new int[] { 55, 70 }, toRanges.get(0));
955     assertArrayEquals(new int[] { 121, 124 }, toRanges.get(1));
956
957     /*
958      * 3:1 plus 1:3 should result in 1:1
959      */
960     ml1 = new MapList(new int[] { 31, 90 }, new int[] { 13, 32 }, 3, 1);
961     ml2 = new MapList(new int[] { 11, 40 }, new int[] { 41, 50, 71, 150 },
962             1, 3);
963     compound = ml1.traverse(ml2);
964
965     assertEquals(1, compound.getFromRatio());
966     assertEquals(1, compound.getToRatio());
967     fromRanges = compound.getFromRanges();
968     assertEquals(1, fromRanges.size());
969     assertArrayEquals(new int[] { 31, 90 }, fromRanges.get(0));
970     // 13-32 maps to 47-50,71-126
971     toRanges = compound.getToRanges();
972     assertEquals(2, toRanges.size());
973     assertArrayEquals(new int[] { 47, 50 }, toRanges.get(0));
974     assertArrayEquals(new int[] { 71, 126 }, toRanges.get(1));
975
976     /*
977      * if not all regions are mapped through, returns what is
978      */
979     ml1 = new MapList(new int[] { 1, 50 }, new int[] { 101, 150 }, 1, 1);
980     ml2 = new MapList(new int[] { 131, 180 }, new int[] { 201, 250 }, 1, 1);
981     compound = ml1.traverse(ml2);
982     assertNull(compound);
983   }
984
985   /**
986    * Test that method that inspects for the (first) forward or reverse 'to'
987    * range. Single position ranges are ignored.
988    */
989   @Test(groups = { "Functional" })
990   public void testIsToForwardsStrand()
991   {
992     // [3-9] declares forward strand
993     MapList ml = new MapList(new int[] { 20, 11 },
994             new int[]
995             { 2, 2, 3, 9, 12, 11 }, 1, 1);
996     assertTrue(ml.isToForwardStrand());
997
998     // [11-5] declares reverse strand ([13-14] is ignored)
999     ml = new MapList(new int[] { 20, 11 },
1000             new int[]
1001             { 2, 2, 11, 5, 13, 14 }, 1, 1);
1002     assertFalse(ml.isToForwardStrand());
1003
1004     // all single position ranges - defaults to forward strand
1005     ml = new MapList(new int[] { 3, 1 }, new int[] { 2, 2, 4, 4, 6, 6 }, 1,
1006             1);
1007     assertTrue(ml.isToForwardStrand());
1008   }
1009
1010   /**
1011    * Test for mapping with overlapping ranges
1012    */
1013   @Test(groups = { "Functional" })
1014   public void testLocateInFrom_withOverlap()
1015   {
1016     /*
1017      * gene to protein...
1018      */
1019     int[] codons = new int[] { 1, 12, 12, 17 };
1020     int[] protein = new int[] { 1, 6 };
1021     MapList ml = new MapList(codons, protein, 3, 1);
1022     assertEquals("[1, 3]", Arrays.toString(ml.locateInFrom(1, 1)));
1023     assertEquals("[4, 6]", Arrays.toString(ml.locateInFrom(2, 2)));
1024     assertEquals("[7, 9]", Arrays.toString(ml.locateInFrom(3, 3)));
1025     assertEquals("[10, 12]", Arrays.toString(ml.locateInFrom(4, 4)));
1026     assertEquals("[12, 14]", Arrays.toString(ml.locateInFrom(5, 5)));
1027     assertEquals("[15, 17]", Arrays.toString(ml.locateInFrom(6, 6)));
1028     assertEquals("[1, 6]", Arrays.toString(ml.locateInFrom(1, 2)));
1029     assertEquals("[1, 9]", Arrays.toString(ml.locateInFrom(1, 3)));
1030     assertEquals("[1, 12]", Arrays.toString(ml.locateInFrom(1, 4)));
1031     assertEquals("[1, 12, 12, 14]", Arrays.toString(ml.locateInFrom(1, 5)));
1032     assertEquals("[1, 12, 12, 17]", Arrays.toString(ml.locateInFrom(1, 6)));
1033     assertEquals("[4, 9]", Arrays.toString(ml.locateInFrom(2, 3)));
1034     assertEquals("[7, 12, 12, 17]", Arrays.toString(ml.locateInFrom(3, 6)));
1035
1036     /*
1037      * partial overlap of range
1038      */
1039     assertEquals("[4, 12, 12, 17]", Arrays.toString(ml.locateInFrom(2, 7)));
1040     assertEquals("[1, 3]", Arrays.toString(ml.locateInFrom(-1, 1)));
1041
1042     /*
1043      * no overlap in range
1044      */
1045     assertNull(ml.locateInFrom(0, 0));
1046
1047     /*
1048      * gene to CDS...from EMBL:MN908947
1049      */
1050     int[] gene = new int[] { 266, 13468, 13468, 21555 };
1051     int[] cds = new int[] { 1, 21291 };
1052     ml = new MapList(gene, cds, 1, 1);
1053     assertEquals("[13468, 13468]",
1054             Arrays.toString(ml.locateInFrom(13203, 13203)));
1055     assertEquals("[13468, 13468]",
1056             Arrays.toString(ml.locateInFrom(13204, 13204)));
1057     assertEquals("[13468, 13468, 13468, 13468]",
1058             Arrays.toString(ml.locateInFrom(13203, 13204)));
1059   }
1060
1061   /**
1062    * Test for mapping with overlapping ranges
1063    */
1064   @Test(groups = { "Functional" })
1065   public void testLocateInTo_withOverlap()
1066   {
1067     /*
1068      * gene to protein...
1069      */
1070     int[] codons = new int[] { 1, 12, 12, 17 };
1071     int[] protein = new int[] { 1, 6 };
1072     MapList ml = new MapList(codons, protein, 3, 1);
1073     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(1, 1)));
1074     assertEquals("[1, 3]", Arrays.toString(ml.locateInTo(3, 8)));
1075     assertEquals("[1, 4]", Arrays.toString(ml.locateInTo(2, 11)));
1076     assertEquals("[1, 4]", Arrays.toString(ml.locateInTo(3, 11)));
1077
1078     // we want base 12 to map to both of the amino acids it codes for
1079     assertEquals("[4, 5]", Arrays.toString(ml.locateInTo(12, 12)));
1080     assertEquals("[4, 5]", Arrays.toString(ml.locateInTo(11, 12)));
1081     assertEquals("[4, 6]", Arrays.toString(ml.locateInTo(11, 15)));
1082     assertEquals("[6, 6]", Arrays.toString(ml.locateInTo(15, 17)));
1083
1084     /*
1085      * no overlap
1086      */
1087     assertNull(ml.locateInTo(0, 0));
1088     
1089     /*
1090      * partial overlap
1091      */
1092     assertEquals("[1, 6]", Arrays.toString(ml.locateInTo(1, 18)));
1093     assertEquals("[1, 1]", Arrays.toString(ml.locateInTo(-1, 1)));
1094
1095     /*
1096      * gene to CDS...from EMBL:MN908947
1097      * the base at 13468 is used twice in transcription
1098      */
1099     int[] gene = new int[] { 266, 13468, 13468, 21555 };
1100     int[] cds = new int[] { 1, 21291 };
1101     ml = new MapList(gene, cds, 1, 1);
1102     assertEquals("[13203, 13204]",
1103             Arrays.toString(ml.locateInTo(13468, 13468)));
1104     
1105     /*
1106      * gene to protein
1107      * the base at 13468 is in the codon for 4401N and also 4402R
1108      */
1109     gene = new int[] { 266, 13468, 13468, 21552 }; // stop codon excluded
1110     protein = new int[] { 1, 7096 };
1111     ml = new MapList(gene, protein, 3, 1);
1112     assertEquals("[4401, 4402]",
1113             Arrays.toString(ml.locateInTo(13468, 13468)));
1114   }
1115
1116   @Test(groups = { "Functional" })
1117   public void testTraverseToPosition()
1118   {
1119     List<int[]> ranges = new ArrayList<>();
1120     assertNull(MapList.traverseToPosition(ranges, 0));
1121
1122     ranges.add(new int[] { 3, 6 });
1123     assertNull(MapList.traverseToPosition(ranges, 0));
1124   }
1125
1126   @Test(groups = { "Functional" })
1127   public void testCountPositions()
1128   {
1129     try
1130     {
1131       MapList.countPositions(null, 1);
1132       fail("expected exception");
1133     } catch (NullPointerException e)
1134     {
1135       // expected
1136     }
1137
1138     List<int[]> intervals = new ArrayList<>();
1139     assertNull(MapList.countPositions(intervals, 1));
1140
1141     /*
1142      * forward strand
1143      */
1144     intervals.add(new int[] { 10, 20 });
1145     assertNull(MapList.countPositions(intervals, 9));
1146     assertNull(MapList.countPositions(intervals, 21));
1147     assertArrayEquals(new int[] { 1, 1 },
1148             MapList.countPositions(intervals, 10));
1149     assertArrayEquals(new int[] { 6, 1 },
1150             MapList.countPositions(intervals, 15));
1151     assertArrayEquals(new int[] { 11, 1 },
1152             MapList.countPositions(intervals, 20));
1153
1154     intervals.add(new int[] { 25, 25 });
1155     assertArrayEquals(new int[] { 12, 1 },
1156             MapList.countPositions(intervals, 25));
1157
1158     // next interval repeats position 25 - which should be counted twice if
1159     // traversed
1160     intervals.add(new int[] { 25, 26 });
1161     assertArrayEquals(new int[] { 12, 1 },
1162             MapList.countPositions(intervals, 25));
1163     assertArrayEquals(new int[] { 14, 1 },
1164             MapList.countPositions(intervals, 26));
1165
1166     /*
1167      * reverse strand
1168      */
1169     intervals.clear();
1170     intervals.add(new int[] { 5, -5 });
1171     assertNull(MapList.countPositions(intervals, 6));
1172     assertNull(MapList.countPositions(intervals, -6));
1173     assertArrayEquals(new int[] { 1, -1 },
1174             MapList.countPositions(intervals, 5));
1175     assertArrayEquals(new int[] { 7, -1 },
1176             MapList.countPositions(intervals, -1));
1177     assertArrayEquals(new int[] { 11, -1 },
1178             MapList.countPositions(intervals, -5));
1179
1180     /*
1181      * reverse then forward
1182      */
1183     intervals.add(new int[] { 5, 10 });
1184     assertArrayEquals(new int[] { 13, 1 },
1185             MapList.countPositions(intervals, 6));
1186
1187     /*
1188      * reverse then forward then reverse
1189      */
1190     intervals.add(new int[] { -10, -20 });
1191     assertArrayEquals(new int[] { 20, -1 },
1192             MapList.countPositions(intervals, -12));
1193
1194     /*
1195      * an interval [x, x] is treated as forward
1196      */
1197     intervals.add(new int[] { 30, 30 });
1198     assertArrayEquals(new int[] { 29, 1 },
1199             MapList.countPositions(intervals, 30));
1200
1201     /*
1202      * it is the first matched occurrence that is returned
1203      */
1204     intervals.clear();
1205     intervals.add(new int[] { 1, 2 });
1206     intervals.add(new int[] { 2, 3 });
1207     assertArrayEquals(new int[] { 2, 1 },
1208             MapList.countPositions(intervals, 2));
1209     intervals.add(new int[] { -1, -2 });
1210     intervals.add(new int[] { -2, -3 });
1211     assertArrayEquals(new int[] { 6, -1 },
1212             MapList.countPositions(intervals, -2));
1213   }
1214
1215   /**
1216    * Tests for helper method that adds any overlap (plus offset) to a set of
1217    * overlaps
1218    */
1219   @Test(groups = { "Functional" })
1220   public void testAddOffsetPositions()
1221   {
1222     List<int[]> mapped = new ArrayList<>();
1223     int[] range = new int[] {10, 20};
1224     BitSet offsets = new BitSet();
1225
1226     MapList.addOffsetPositions(mapped, 0, range, offsets);
1227     assertTrue(mapped.isEmpty()); // nothing marked for overlap
1228
1229     offsets.set(11);
1230     MapList.addOffsetPositions(mapped, 0, range, offsets);
1231     assertTrue(mapped.isEmpty()); // no offset 11 in range
1232
1233     offsets.set(4, 6); // this sets bits 4 and 5
1234     MapList.addOffsetPositions(mapped, 0, range, offsets);
1235     assertEquals(1, mapped.size());
1236     assertArrayEquals(new int[] { 14, 15 }, mapped.get(0));
1237
1238     mapped.clear();
1239     offsets.set(10);
1240     MapList.addOffsetPositions(mapped, 0, range, offsets);
1241     assertEquals(2, mapped.size());
1242     assertArrayEquals(new int[] { 14, 15 }, mapped.get(0));
1243     assertArrayEquals(new int[] { 20, 20 }, mapped.get(1));
1244
1245     /*
1246      * reverse range
1247      */
1248     range = new int[] { 20, 10 };
1249     mapped.clear();
1250     offsets.clear();
1251     MapList.addOffsetPositions(mapped, 0, range, offsets);
1252     assertTrue(mapped.isEmpty()); // nothing marked for overlap
1253     offsets.set(11);
1254     MapList.addOffsetPositions(mapped, 0, range, offsets);
1255     assertTrue(mapped.isEmpty()); // no offset 11 in range
1256     offsets.set(0);
1257     offsets.set(10);
1258     offsets.set(6, 8); // sets bits 6 and 7
1259     MapList.addOffsetPositions(mapped, 0, range, offsets);
1260     assertEquals(3, mapped.size());
1261     assertArrayEquals(new int[] { 20, 20 }, mapped.get(0));
1262     assertArrayEquals(new int[] { 14, 13 }, mapped.get(1));
1263     assertArrayEquals(new int[] { 10, 10 }, mapped.get(2));
1264   }
1265   
1266   @Test(groups = { "Functional" })
1267   public void testGetPositionsForOffsets()
1268   {
1269     List<int[]> ranges = new ArrayList<>();
1270     BitSet offsets = new BitSet();
1271     List<int[]> mapped = MapList.getPositionsForOffsets(ranges, offsets);
1272     assertTrue(mapped.isEmpty()); // no ranges and no offsets!
1273     
1274     offsets.set(5, 1000);
1275     mapped = MapList.getPositionsForOffsets(ranges, offsets);
1276     assertTrue(mapped.isEmpty()); // no ranges
1277     
1278     /*
1279      * one range with overlap of offsets
1280      */
1281     ranges.add(new int[] {15, 25});
1282     mapped = MapList.getPositionsForOffsets(ranges, offsets);
1283     assertEquals(1, mapped.size());
1284     assertArrayEquals(new int[] {20,  25}, mapped.get(0));
1285     
1286     /*
1287      * two ranges
1288      */
1289     ranges.add(new int[] {300, 320});
1290     mapped = MapList.getPositionsForOffsets(ranges, offsets);
1291     assertEquals(2, mapped.size());
1292     assertArrayEquals(new int[] {20,  25}, mapped.get(0));
1293     assertArrayEquals(new int[] {300, 320}, mapped.get(1));
1294     
1295     /*
1296      * boundary case - right end of first range overlaps
1297      */
1298     offsets.clear();
1299     offsets.set(10);
1300     mapped = MapList.getPositionsForOffsets(ranges, offsets);
1301     assertEquals(1, mapped.size());
1302     assertArrayEquals(new int[] {25,  25}, mapped.get(0));
1303     
1304     /*
1305      * boundary case - left end of second range overlaps
1306      */
1307     offsets.set(11);
1308     mapped = MapList.getPositionsForOffsets(ranges, offsets);
1309     assertEquals(2, mapped.size());
1310     assertArrayEquals(new int[] {25,  25}, mapped.get(0));
1311     assertArrayEquals(new int[] {300, 300}, mapped.get(1));
1312     
1313     /*
1314      * offsets into a circular range are reported in
1315      * the order in which they are traversed
1316      */
1317     ranges.clear();
1318     ranges.add(new int[] {100, 150});
1319     ranges.add(new int[] {60, 80});
1320     offsets.clear();
1321     offsets.set(45, 55); // sets bits 45 to 54
1322     mapped = MapList.getPositionsForOffsets(ranges, offsets);
1323     assertEquals(2, mapped.size());
1324     assertArrayEquals(new int[] {145, 150}, mapped.get(0)); // offsets 45-50
1325     assertArrayEquals(new int[] {60, 63}, mapped.get(1)); // offsets 51-54
1326
1327     /*
1328      * reverse range overlap is reported with start < end
1329      */
1330     ranges.clear();
1331     ranges.add(new int[] {4321, 4000});
1332     offsets.clear();
1333     offsets.set(20, 22); // sets bits 20 and 21
1334     offsets.set(30);
1335     mapped = MapList.getPositionsForOffsets(ranges, offsets);
1336     assertEquals(2, mapped.size());
1337     assertArrayEquals(new int[] {4301, 4300}, mapped.get(0));
1338     assertArrayEquals(new int[] {4291, 4291}, mapped.get(1));
1339   }
1340   
1341   @Test(groups = { "Functional" })
1342   public void testGetMappedOffsetsForPositions()
1343   {
1344     /*
1345      * start by verifying the examples in the method's Javadoc!
1346      */
1347     List<int[]> ranges = new ArrayList<>();
1348     ranges.add(new int[] {10, 20});
1349     ranges.add(new int[] {31, 40});
1350     BitSet overlaps = MapList.getMappedOffsetsForPositions(1, 9, ranges, 1, 1);
1351     assertTrue(overlaps.isEmpty());
1352     overlaps = MapList.getMappedOffsetsForPositions(1, 11, ranges, 1, 1);
1353     assertEquals(2, overlaps.cardinality());
1354     assertTrue(overlaps.get(0));
1355     assertTrue(overlaps.get(1));
1356     overlaps = MapList.getMappedOffsetsForPositions(15, 35, ranges, 1, 1);
1357     assertEquals(11, overlaps.cardinality());
1358     for (int i = 5 ; i <= 11 ; i++)
1359     {
1360       assertTrue(overlaps.get(i));
1361     }
1362     
1363     ranges.clear();
1364     ranges.add(new int[] {1, 200});
1365     overlaps = MapList.getMappedOffsetsForPositions(9, 9, ranges, 1, 3);
1366     assertEquals(3, overlaps.cardinality());
1367     assertTrue(overlaps.get(24));
1368     assertTrue(overlaps.get(25));
1369     assertTrue(overlaps.get(26));
1370     
1371     ranges.clear();
1372     ranges.add(new int[] {101, 150});
1373     ranges.add(new int[] {171, 180});
1374     overlaps = MapList.getMappedOffsetsForPositions(101, 102, ranges, 3, 1);
1375     assertEquals(1, overlaps.cardinality());
1376     assertTrue(overlaps.get(0));
1377     overlaps = MapList.getMappedOffsetsForPositions(150, 171, ranges, 3, 1);
1378     assertEquals(1, overlaps.cardinality());
1379     assertTrue(overlaps.get(16));
1380     
1381     ranges.clear();
1382     ranges.add(new int[] {101, 150});
1383     ranges.add(new int[] {21, 30});
1384     overlaps = MapList.getMappedOffsetsForPositions(24, 40, ranges, 3, 1);
1385     assertEquals(3, overlaps.cardinality());
1386     assertTrue(overlaps.get(17));
1387     assertTrue(overlaps.get(18));
1388     assertTrue(overlaps.get(19));
1389     
1390     /*
1391      * reverse range 1:1 (e.g. reverse strand gene to transcript)
1392      */
1393     ranges.clear();
1394     ranges.add(new int[] {20, 10});
1395     overlaps = MapList.getMappedOffsetsForPositions(12, 13, ranges, 1, 1);
1396     assertEquals(2, overlaps.cardinality());
1397     assertTrue(overlaps.get(7));
1398     assertTrue(overlaps.get(8));
1399     
1400     /*
1401      * reverse range 3:1 (e.g. reverse strand gene to peptide)
1402      * from EMBL:J03321 to P0CE20
1403      */
1404     ranges.clear();
1405     ranges.add(new int[] {1480, 488});
1406     overlaps = MapList.getMappedOffsetsForPositions(1460, 1460, ranges, 3, 1);
1407     // 1460 is the end of the 7th codon
1408     assertEquals(1, overlaps.cardinality());
1409     assertTrue(overlaps.get(6));
1410     // add one base (part codon)
1411     overlaps = MapList.getMappedOffsetsForPositions(1459, 1460, ranges, 3, 1);
1412     assertEquals(2, overlaps.cardinality());
1413     assertTrue(overlaps.get(6));
1414     assertTrue(overlaps.get(7));
1415     // add second base (part codon)
1416     overlaps = MapList.getMappedOffsetsForPositions(1458, 1460, ranges, 3, 1);
1417     assertEquals(2, overlaps.cardinality());
1418     assertTrue(overlaps.get(6));
1419     assertTrue(overlaps.get(7));
1420     // add third base (whole codon)
1421     overlaps = MapList.getMappedOffsetsForPositions(1457, 1460, ranges, 3, 1);
1422     assertEquals(2, overlaps.cardinality());
1423     assertTrue(overlaps.get(6));
1424     assertTrue(overlaps.get(7));
1425     // add one more base (part codon)
1426     overlaps = MapList.getMappedOffsetsForPositions(1456, 1460, ranges, 3, 1);
1427     assertEquals(3, overlaps.cardinality());
1428     assertTrue(overlaps.get(6));
1429     assertTrue(overlaps.get(7));
1430     assertTrue(overlaps.get(8));
1431   }
1432 }