JAL-2591 More refactoring (incomplete)
[jalview.git] / test / jalview / datamodel / AlignmentTest.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.datamodel;
22
23 import 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.AlignmentGenerator;
31 import jalview.datamodel.AlignedCodonFrame.SequenceToSequenceMapping;
32 import jalview.gui.JvOptionPane;
33 import jalview.io.DataSourceType;
34 import jalview.io.FileFormat;
35 import jalview.io.FileFormatI;
36 import jalview.io.FormatAdapter;
37 import jalview.util.MapList;
38
39 import java.io.IOException;
40 import java.util.Arrays;
41 import java.util.Iterator;
42 import java.util.List;
43
44 import org.testng.Assert;
45 import org.testng.annotations.BeforeClass;
46 import org.testng.annotations.BeforeMethod;
47 import org.testng.annotations.Test;
48
49 /**
50  * Unit tests for Alignment datamodel.
51  * 
52  * @author gmcarstairs
53  *
54  */
55 public class AlignmentTest
56 {
57
58   @BeforeClass(alwaysRun = true)
59   public void setUpJvOptionPane()
60   {
61     JvOptionPane.setInteractiveMode(false);
62     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
63   }
64
65   // @formatter:off
66   private static final String TEST_DATA = 
67           "# STOCKHOLM 1.0\n" +
68           "#=GS D.melanogaster.1 AC AY119185.1/838-902\n" +
69           "#=GS D.melanogaster.2 AC AC092237.1/57223-57161\n" +
70           "#=GS D.melanogaster.3 AC AY060611.1/560-627\n" +
71           "D.melanogaster.1          G.AGCC.CU...AUGAUCGA\n" +
72           "#=GR D.melanogaster.1 SS  ................((((\n" +
73           "D.melanogaster.2          C.AUUCAACU.UAUGAGGAU\n" +
74           "#=GR D.melanogaster.2 SS  ................((((\n" +
75           "D.melanogaster.3          G.UGGCGCU..UAUGACGCA\n" +
76           "#=GR D.melanogaster.3 SS  (.(((...(....(((((((\n" +
77           "//";
78
79   private static final String AA_SEQS_1 = 
80           ">Seq1Name/5-8\n" +
81           "K-QY--L\n" +
82           ">Seq2Name/12-15\n" +
83           "-R-FP-W-\n";
84
85   private static final String CDNA_SEQS_1 = 
86           ">Seq1Name/100-111\n" +
87           "AC-GG--CUC-CAA-CT\n" +
88           ">Seq2Name/200-211\n" +
89           "-CG-TTA--ACG---AAGT\n";
90
91   private static final String CDNA_SEQS_2 = 
92           ">Seq1Name/50-61\n" +
93           "GCTCGUCGTACT\n" +
94           ">Seq2Name/60-71\n" +
95           "GGGTCAGGCAGT\n";
96   // @formatter:on
97
98   private AlignmentI al;
99
100   /**
101    * Helper method to load an alignment and ensure dataset sequences are set up.
102    * 
103    * @param data
104    * @param format
105    *          TODO
106    * @return
107    * @throws IOException
108    */
109   protected AlignmentI loadAlignment(final String data, FileFormatI format)
110           throws IOException
111   {
112     AlignmentI a = new FormatAdapter().readFile(data, DataSourceType.PASTE,
113             format);
114     a.setDataset(null);
115     return a;
116   }
117
118   /**
119    * assert wrapper: tests all references in the given alignment are consistent
120    * 
121    * @param alignment
122    */
123   public static void assertAlignmentDatasetRefs(AlignmentI alignment)
124   {
125     verifyAlignmentDatasetRefs(alignment, true, null);
126   }
127
128   /**
129    * assert wrapper: tests all references in the given alignment are consistent
130    * 
131    * @param alignment
132    * @param message
133    *          - prefixed to any assert failed messages
134    */
135   public static void assertAlignmentDatasetRefs(AlignmentI alignment,
136           String message)
137   {
138     verifyAlignmentDatasetRefs(alignment, true, message);
139   }
140
141   /**
142    * verify sequence and dataset references are properly contained within
143    * dataset
144    * 
145    * @param alignment
146    *          - the alignmentI object to verify (either alignment or dataset)
147    * @param raiseAssert
148    *          - when set, testng assertions are raised.
149    * @param message
150    *          - null or a string message to prepend to the assert failed
151    *          messages.
152    * @return true if alignment references were in order, otherwise false.
153    */
154   public static boolean verifyAlignmentDatasetRefs(AlignmentI alignment,
155           boolean raiseAssert, String message)
156   {
157     if (message == null)
158     {
159       message = "";
160     }
161     if (alignment == null)
162     {
163       if (raiseAssert)
164       {
165         Assert.fail(message + "Alignment for verification was null.");
166       }
167       return false;
168     }
169     if (alignment.getDataset() != null)
170     {
171       AlignmentI dataset = alignment.getDataset();
172       // check all alignment sequences have their dataset within the dataset
173       for (SequenceI seq : alignment.getSequences())
174       {
175         SequenceI seqds = seq.getDatasetSequence();
176         if (seqds.getDatasetSequence() != null)
177         {
178           if (raiseAssert)
179           {
180             Assert.fail(message
181                     + " Alignment contained a sequence who's dataset sequence has a second dataset reference.");
182           }
183           return false;
184         }
185         if (dataset.findIndex(seqds) == -1)
186         {
187           if (raiseAssert)
188           {
189             Assert.fail(message
190                     + " Alignment contained a sequence who's dataset sequence was not in the dataset.");
191           }
192           return false;
193         }
194       }
195       return verifyAlignmentDatasetRefs(alignment.getDataset(),
196               raiseAssert, message);
197     }
198     else
199     {
200       int dsp = -1;
201       // verify all dataset sequences
202       for (SequenceI seqds : alignment.getSequences())
203       {
204         dsp++;
205         if (seqds.getDatasetSequence() != null)
206         {
207           if (raiseAssert)
208           {
209             Assert.fail(message
210                     + " Dataset contained a sequence with non-null dataset reference (ie not a dataset sequence!)");
211           }
212           return false;
213         }
214         int foundp = alignment.findIndex(seqds);
215         if (foundp != dsp)
216         {
217           if (raiseAssert)
218           {
219             Assert.fail(message
220                     + " Dataset sequence array contains a reference at "
221                     + dsp + " to a sequence first seen at " + foundp + " ("
222                     + seqds.toString() + ")");
223           }
224           return false;
225         }
226         if (seqds.getDBRefs() != null)
227         {
228           for (DBRefEntry dbr : seqds.getDBRefs())
229           {
230             if (dbr.getMap() != null)
231             {
232               SequenceI seqdbrmapto = dbr.getMap().getTo();
233               if (seqdbrmapto != null)
234               {
235                 if (seqdbrmapto.getDatasetSequence() != null)
236                 {
237                   if (raiseAssert)
238                   {
239                     Assert.fail(message
240                             + " DBRefEntry for sequence in alignment had map to sequence which was not a dataset sequence");
241                   }
242                   return false;
243
244                 }
245                 if (alignment.findIndex(dbr.getMap().getTo()) == -1)
246                 {
247                   if (raiseAssert)
248                   {
249                     Assert.fail(message
250                             + " DBRefEntry for sequence in alignment had map to sequence not in dataset");
251                   }
252                   return false;
253                 }
254               }
255             }
256           }
257         }
258       }
259       // finally, verify codonmappings involve only dataset sequences.
260       if (alignment.getCodonFrames() != null)
261       {
262         for (AlignedCodonFrame alc : alignment.getCodonFrames())
263         {
264           for (SequenceToSequenceMapping ssm : alc.getMappings())
265           {
266             if (ssm.getFromSeq().getDatasetSequence() != null)
267             {
268               if (raiseAssert)
269               {
270                 Assert.fail(message
271                         + " CodonFrame-SSM-FromSeq is not a dataset sequence");
272               }
273               return false;
274             }
275             if (alignment.findIndex(ssm.getFromSeq()) == -1)
276             {
277
278               if (raiseAssert)
279               {
280                 Assert.fail(message
281                         + " CodonFrame-SSM-FromSeq is not contained in dataset");
282               }
283               return false;
284             }
285             if (ssm.getMapping().getTo().getDatasetSequence() != null)
286             {
287               if (raiseAssert)
288               {
289                 Assert.fail(message
290                         + " CodonFrame-SSM-Mapping-ToSeq is not a dataset sequence");
291               }
292               return false;
293             }
294             if (alignment.findIndex(ssm.getMapping().getTo()) == -1)
295             {
296
297               if (raiseAssert)
298               {
299                 Assert.fail(message
300                         + " CodonFrame-SSM-Mapping-ToSeq is not contained in dataset");
301               }
302               return false;
303             }
304           }
305         }
306       }
307     }
308     return true; // all relationships verified!
309   }
310
311   /**
312    * call verifyAlignmentDatasetRefs with and without assertion raising enabled,
313    * to check expected pass/fail actually occurs in both conditions
314    * 
315    * @param al
316    * @param expected
317    * @param msg
318    */
319   private void assertVerifyAlignment(AlignmentI al, boolean expected,
320           String msg)
321   {
322     if (expected)
323     {
324       try
325       {
326
327         Assert.assertTrue(verifyAlignmentDatasetRefs(al, true, null),
328                 "Valid test alignment failed when raiseAsserts enabled:"
329                         + msg);
330       } catch (AssertionError ae)
331       {
332         ae.printStackTrace();
333         Assert.fail(
334                 "Valid test alignment raised assertion errors when raiseAsserts enabled: "
335                         + msg, ae);
336       }
337       // also check validation passes with asserts disabled
338       Assert.assertTrue(verifyAlignmentDatasetRefs(al, false, null),
339               "Valid test alignment tested false when raiseAsserts disabled:"
340                       + msg);
341     }
342     else
343     {
344       boolean assertRaised = false;
345       try
346       {
347         verifyAlignmentDatasetRefs(al, true, null);
348       } catch (AssertionError ae)
349       {
350         // expected behaviour
351         assertRaised = true;
352       }
353       if (!assertRaised)
354       {
355         Assert.fail("Invalid test alignment passed when raiseAsserts enabled:"
356                 + msg);
357       }
358       // also check validation passes with asserts disabled
359       Assert.assertFalse(verifyAlignmentDatasetRefs(al, false, null),
360               "Invalid test alignment tested true when raiseAsserts disabled:"
361                       + msg);
362     }
363   }
364
365   @Test(groups = { "Functional" })
366   public void testVerifyAlignmentDatasetRefs()
367   {
368     SequenceI sq1 = new Sequence("sq1", "ASFDD"), sq2 = new Sequence("sq2",
369             "TTTTTT");
370
371     // construct simple valid alignment dataset
372     Alignment al = new Alignment(new SequenceI[] { sq1, sq2 });
373     // expect this to pass
374     assertVerifyAlignment(al, true, "Simple valid alignment didn't verify");
375
376     // check test for sequence->datasetSequence validity
377     sq1.setDatasetSequence(sq2);
378     assertVerifyAlignment(al, false,
379             "didn't detect dataset sequence with a dataset sequence reference.");
380
381     sq1.setDatasetSequence(null);
382     assertVerifyAlignment(
383             al,
384             true,
385             "didn't reinstate validity after nulling dataset sequence dataset reference");
386
387     // now create dataset and check again
388     al.createDatasetAlignment();
389     assertNotNull(al.getDataset());
390
391     assertVerifyAlignment(al, true,
392             "verify failed after createDatasetAlignment");
393
394     // create a dbref on sq1 with a sequence ref to sq2
395     DBRefEntry dbrs1tos2 = new DBRefEntry("UNIPROT", "1", "Q111111");
396     dbrs1tos2.setMap(new Mapping(sq2.getDatasetSequence(),
397             new int[] { 1, 5 }, new int[] { 2, 6 }, 1, 1));
398     sq1.getDatasetSequence().addDBRef(dbrs1tos2);
399     assertVerifyAlignment(al, true,
400             "verify failed after addition of valid DBRefEntry/map");
401     // now create a dbref on a new sequence which maps to another sequence
402     // outside of the dataset
403     SequenceI sqout = new Sequence("sqout", "ututututucagcagcag"), sqnew = new Sequence(
404             "sqnew", "EEERRR");
405     DBRefEntry sqnewsqout = new DBRefEntry("ENAFOO", "1", "R000001");
406     sqnewsqout.setMap(new Mapping(sqout, new int[] { 1, 6 }, new int[] { 1,
407         18 }, 1, 3));
408     al.getDataset().addSequence(sqnew);
409
410     assertVerifyAlignment(al, true,
411             "verify failed after addition of new sequence to dataset");
412     // now start checking exception conditions
413     sqnew.addDBRef(sqnewsqout);
414     assertVerifyAlignment(
415             al,
416             false,
417             "verify passed when a dbref with map to sequence outside of dataset was added");
418     // make the verify pass by adding the outsider back in
419     al.getDataset().addSequence(sqout);
420     assertVerifyAlignment(al, true,
421             "verify should have passed after adding dbref->to sequence in to dataset");
422     // and now the same for a codon mapping...
423     SequenceI sqanotherout = new Sequence("sqanotherout",
424             "aggtutaggcagcagcag");
425
426     AlignedCodonFrame alc = new AlignedCodonFrame();
427     alc.addMap(sqanotherout, sqnew, new MapList(new int[] { 1, 6 },
428             new int[] { 1, 18 }, 3, 1));
429
430     al.addCodonFrame(alc);
431     Assert.assertEquals(al.getDataset().getCodonFrames().size(), 1);
432
433     assertVerifyAlignment(
434             al,
435             false,
436             "verify passed when alCodonFrame mapping to sequence outside of dataset was added");
437     // make the verify pass by adding the outsider back in
438     al.getDataset().addSequence(sqanotherout);
439     assertVerifyAlignment(
440             al,
441             true,
442             "verify should have passed once all sequences involved in alCodonFrame were added to dataset");
443     al.getDataset().addSequence(sqanotherout);
444     assertVerifyAlignment(al, false,
445             "verify should have failed when a sequence was added twice to the dataset");
446     al.getDataset().deleteSequence(sqanotherout);
447     assertVerifyAlignment(al, true,
448             "verify should have passed after duplicate entry for sequence was removed");
449   }
450
451   /**
452    * checks that the sequence data for an alignment's dataset is non-redundant.
453    * Fails if there are sequences with same id, sequence, start, and.
454    */
455
456   public static void assertDatasetIsNormalised(AlignmentI al)
457   {
458     assertDatasetIsNormalised(al, null);
459   }
460
461   /**
462    * checks that the sequence data for an alignment's dataset is non-redundant.
463    * Fails if there are sequences with same id, sequence, start, and.
464    * 
465    * @param al
466    *          - alignment to verify
467    * @param message
468    *          - null or message prepended to exception message.
469    */
470   public static void assertDatasetIsNormalised(AlignmentI al, String message)
471   {
472     if (al.getDataset() != null)
473     {
474       assertDatasetIsNormalised(al.getDataset(), message);
475       return;
476     }
477     /*
478      * look for pairs of sequences with same ID, start, end, and sequence
479      */
480     List<SequenceI> seqSet = al.getSequences();
481     for (int p = 0; p < seqSet.size(); p++)
482     {
483       SequenceI pSeq = seqSet.get(p);
484       for (int q = p + 1; q < seqSet.size(); q++)
485       {
486         SequenceI qSeq = seqSet.get(q);
487         if (pSeq.getStart() != qSeq.getStart())
488         {
489           continue;
490         }
491         if (pSeq.getEnd() != qSeq.getEnd())
492         {
493           continue;
494         }
495         if (!pSeq.getName().equals(qSeq.getName()))
496         {
497           continue;
498         }
499         if (!Arrays.equals(pSeq.getSequence(), qSeq.getSequence()))
500         {
501           continue;
502         }
503         Assert.fail((message == null ? "" : message + " :")
504                 + "Found similar sequences at position " + p + " and " + q
505                 + "\n" + pSeq.toString());
506       }
507     }
508   }
509
510   @Test(groups = { "Functional", "Asserts" })
511   public void testAssertDatasetIsNormalised()
512   {
513     Sequence sq1 = new Sequence("s1/1-4", "asdf");
514     Sequence sq1shift = new Sequence("s1/2-5", "asdf");
515     Sequence sq1seqd = new Sequence("s1/1-4", "asdt");
516     Sequence sq2 = new Sequence("s2/1-4", "asdf");
517     Sequence sq1dup = new Sequence("s1/1-4", "asdf");
518
519     Alignment al = new Alignment(new SequenceI[] { sq1 });
520     al.setDataset(null);
521
522     try
523     {
524       assertDatasetIsNormalised(al);
525     } catch (AssertionError ae)
526     {
527       Assert.fail("Single sequence should be valid normalised dataset.");
528     }
529     al.addSequence(sq2);
530     try
531     {
532       assertDatasetIsNormalised(al);
533     } catch (AssertionError ae)
534     {
535       Assert.fail("Two different sequences should be valid normalised dataset.");
536     }
537     /*
538      * now change sq2's name in the alignment. should still be valid
539      */
540     al.findName(sq2.getName()).setName("sq1");
541     try
542     {
543       assertDatasetIsNormalised(al);
544     } catch (AssertionError ae)
545     {
546       Assert.fail("Two different sequences in dataset, but same name in alignment, should be valid normalised dataset.");
547     }
548
549     al.addSequence(sq1seqd);
550     try
551     {
552       assertDatasetIsNormalised(al);
553     } catch (AssertionError ae)
554     {
555       Assert.fail("sq1 and sq1 with different sequence should be distinct.");
556     }
557
558     al.addSequence(sq1shift);
559     try
560     {
561       assertDatasetIsNormalised(al);
562     } catch (AssertionError ae)
563     {
564       Assert.fail("sq1 and sq1 with different start/end should be distinct.");
565     }
566     /*
567      * finally, the failure case
568      */
569     al.addSequence(sq1dup);
570     boolean ssertRaised = false;
571     try
572     {
573       assertDatasetIsNormalised(al);
574
575     } catch (AssertionError ae)
576     {
577       ssertRaised = true;
578     }
579     if (!ssertRaised)
580     {
581       Assert.fail("Expected identical sequence to raise exception.");
582     }
583   }
584
585   /*
586    * Read in Stockholm format test data including secondary structure
587    * annotations.
588    */
589   @BeforeMethod(alwaysRun = true)
590   public void setUp() throws IOException
591   {
592     al = loadAlignment(TEST_DATA, FileFormat.Stockholm);
593     int i = 0;
594     for (AlignmentAnnotation ann : al.getAlignmentAnnotation())
595     {
596       ann.setCalcId("CalcIdFor" + al.getSequenceAt(i).getName());
597       i++;
598     }
599   }
600
601   /**
602    * Test method that returns annotations that match on calcId.
603    */
604   @Test(groups = { "Functional" })
605   public void testFindAnnotation_byCalcId()
606   {
607     Iterable<AlignmentAnnotation> anns = al
608             .findAnnotation("CalcIdForD.melanogaster.2");
609     Iterator<AlignmentAnnotation> iter = anns.iterator();
610     assertTrue(iter.hasNext());
611     AlignmentAnnotation ann = iter.next();
612     assertEquals("D.melanogaster.2", ann.sequenceRef.getName());
613     assertFalse(iter.hasNext());
614
615     // invalid id
616     anns = al.findAnnotation("CalcIdForD.melanogaster.?");
617     assertFalse(iter.hasNext());
618     anns = al.findAnnotation(null);
619     assertFalse(iter.hasNext());
620   }
621
622   /**
623    * Test method that returns annotations that match on reference sequence,
624    * label, or calcId.
625    */
626   @Test(groups = { "Functional" })
627   public void testFindAnnotations_bySeqLabelandorCalcId()
628   {
629     // TODO: finish testFindAnnotations_bySeqLabelandorCalcId test
630     /* Note - this is an incomplete test - need to check null or
631      * non-null [ matches, not matches ] behaviour for each of the three
632      * parameters..*/
633
634     // search for a single, unique calcId with wildcards on other params
635     Iterable<AlignmentAnnotation> anns = al.findAnnotations(null,
636             "CalcIdForD.melanogaster.2", null);
637     Iterator<AlignmentAnnotation> iter = anns.iterator();
638     assertTrue(iter.hasNext());
639     AlignmentAnnotation ann = iter.next();
640     assertEquals("D.melanogaster.2", ann.sequenceRef.getName());
641     assertFalse(iter.hasNext());
642
643     // save reference to test sequence reference parameter
644     SequenceI rseq = ann.sequenceRef;
645
646     // search for annotation associated with a single sequence
647     anns = al.findAnnotations(rseq, null, null);
648     iter = anns.iterator();
649     assertTrue(iter.hasNext());
650     ann = iter.next();
651     assertEquals("D.melanogaster.2", ann.sequenceRef.getName());
652     assertFalse(iter.hasNext());
653
654     // search for annotation with a non-existant calcId
655     anns = al.findAnnotations(null, "CalcIdForD.melanogaster.?", null);
656     iter = anns.iterator();
657     assertFalse(iter.hasNext());
658
659     // search for annotation with a particular label - expect three
660     anns = al.findAnnotations(null, null, "Secondary Structure");
661     iter = anns.iterator();
662     assertTrue(iter.hasNext());
663     iter.next();
664     assertTrue(iter.hasNext());
665     iter.next();
666     assertTrue(iter.hasNext());
667     iter.next();
668     // third found.. so
669     assertFalse(iter.hasNext());
670
671     // null on all parameters == find all annotations
672     anns = al.findAnnotations(null, null, null);
673     iter = anns.iterator();
674     int n = al.getAlignmentAnnotation().length;
675     while (iter.hasNext())
676     {
677       n--;
678       iter.next();
679     }
680     assertTrue("Found " + n + " fewer annotations from search.", n == 0);
681   }
682
683   @Test(groups = { "Functional" })
684   public void testDeleteAllAnnotations_includingAutocalculated()
685   {
686     AlignmentAnnotation aa = new AlignmentAnnotation("Consensus",
687             "Consensus", 0.5);
688     aa.autoCalculated = true;
689     al.addAnnotation(aa);
690     AlignmentAnnotation[] anns = al.getAlignmentAnnotation();
691     assertEquals("Wrong number of annotations before deleting", 4,
692             anns.length);
693     al.deleteAllAnnotations(true);
694     assertEquals("Not all deleted", 0, al.getAlignmentAnnotation().length);
695   }
696
697   @Test(groups = { "Functional" })
698   public void testDeleteAllAnnotations_excludingAutocalculated()
699   {
700     AlignmentAnnotation aa = new AlignmentAnnotation("Consensus",
701             "Consensus", 0.5);
702     aa.autoCalculated = true;
703     al.addAnnotation(aa);
704     AlignmentAnnotation[] anns = al.getAlignmentAnnotation();
705     assertEquals("Wrong number of annotations before deleting", 4,
706             anns.length);
707     al.deleteAllAnnotations(false);
708     assertEquals("Not just one annotation left", 1,
709             al.getAlignmentAnnotation().length);
710   }
711
712   /**
713    * Tests for realigning as per a supplied alignment: Dna as Dna.
714    * 
715    * Note: AlignedCodonFrame's state variables are named for protein-to-cDNA
716    * mapping, but can be exploited for a general 'sequence-to-sequence' mapping
717    * as here.
718    * 
719    * @throws IOException
720    */
721   @Test(groups = { "Functional" })
722   public void testAlignAs_dnaAsDna() throws IOException
723   {
724     // aligned cDNA:
725     AlignmentI al1 = loadAlignment(CDNA_SEQS_1, FileFormat.Fasta);
726     // unaligned cDNA:
727     AlignmentI al2 = loadAlignment(CDNA_SEQS_2, FileFormat.Fasta);
728
729     /*
730      * Make mappings between sequences. The 'aligned cDNA' is playing the role
731      * of what would normally be protein here.
732      */
733     makeMappings(al1, al2);
734
735     ((Alignment) al2).alignAs(al1, false, true);
736     assertEquals("GC-TC--GUC-GTACT", al2.getSequenceAt(0)
737             .getSequenceAsString());
738     assertEquals("-GG-GTC--AGG--CAGT", al2.getSequenceAt(1)
739             .getSequenceAsString());
740   }
741
742   /**
743    * Aligning protein from cDNA.
744    * 
745    * @throws IOException
746    */
747   @Test(groups = { "Functional" })
748   public void testAlignAs_proteinAsCdna() throws IOException
749   {
750     // see also AlignmentUtilsTests
751     AlignmentI al1 = loadAlignment(CDNA_SEQS_1, FileFormat.Fasta);
752     AlignmentI al2 = loadAlignment(AA_SEQS_1, FileFormat.Fasta);
753     makeMappings(al1, al2);
754
755     // Fudge - alignProteinAsCdna expects mappings to be on protein
756     al2.getCodonFrames().addAll(al1.getCodonFrames());
757
758     ((Alignment) al2).alignAs(al1, false, true);
759     assertEquals("K-Q-Y-L-", al2.getSequenceAt(0).getSequenceAsString());
760     assertEquals("-R-F-P-W", al2.getSequenceAt(1).getSequenceAsString());
761   }
762
763   /**
764    * Test aligning cdna as per protein alignment.
765    * 
766    * @throws IOException
767    */
768   @Test(groups = { "Functional" }, enabled = true)
769   // TODO review / update this test after redesign of alignAs method
770   public void testAlignAs_cdnaAsProtein() throws IOException
771   {
772     /*
773      * Load alignments and add mappings for cDNA to protein
774      */
775     AlignmentI al1 = loadAlignment(CDNA_SEQS_1, FileFormat.Fasta);
776     AlignmentI al2 = loadAlignment(AA_SEQS_1, FileFormat.Fasta);
777     makeMappings(al1, al2);
778
779     /*
780      * Realign DNA; currently keeping existing gaps in introns only
781      */
782     ((Alignment) al1).alignAs(al2, false, true);
783     assertEquals("ACG---GCUCCA------ACT---", al1.getSequenceAt(0)
784             .getSequenceAsString());
785     assertEquals("---CGT---TAACGA---AGT---", al1.getSequenceAt(1)
786             .getSequenceAsString());
787   }
788
789   /**
790    * Test aligning cdna as per protein - single sequences
791    * 
792    * @throws IOException
793    */
794   @Test(groups = { "Functional" }, enabled = true)
795   // TODO review / update this test after redesign of alignAs method
796   public void testAlignAs_cdnaAsProtein_singleSequence() throws IOException
797   {
798     /*
799      * simple case insert one gap
800      */
801     verifyAlignAs(">dna\nCAAaaa\n", ">protein\nQ-K\n", "CAA---aaa");
802
803     /*
804      * simple case but with sequence offsets
805      */
806     verifyAlignAs(">dna/5-10\nCAAaaa\n", ">protein/20-21\nQ-K\n",
807             "CAA---aaa");
808
809     /*
810      * insert gaps as per protein, drop gaps within codons
811      */
812     verifyAlignAs(">dna/10-18\nCA-Aa-aa--AGA\n", ">aa/6-8\n-Q-K--R\n",
813             "---CAA---aaa------AGA");
814   }
815
816   /**
817    * Helper method that makes mappings and then aligns the first alignment as
818    * the second
819    * 
820    * @param fromSeqs
821    * @param toSeqs
822    * @param expected
823    * @throws IOException
824    */
825   public void verifyAlignAs(String fromSeqs, String toSeqs, String expected)
826           throws IOException
827   {
828     /*
829      * Load alignments and add mappings from nucleotide to protein (or from
830      * first to second if both the same type)
831      */
832     AlignmentI al1 = loadAlignment(fromSeqs, FileFormat.Fasta);
833     AlignmentI al2 = loadAlignment(toSeqs, FileFormat.Fasta);
834     makeMappings(al1, al2);
835
836     /*
837      * Realign DNA; currently keeping existing gaps in introns only
838      */
839     ((Alignment) al1).alignAs(al2, false, true);
840     assertEquals(expected, al1.getSequenceAt(0).getSequenceAsString());
841   }
842
843   /**
844    * Helper method to make mappings between sequences, and add the mappings to
845    * the 'mapped from' alignment
846    * 
847    * @param alFrom
848    * @param alTo
849    */
850   public void makeMappings(AlignmentI alFrom, AlignmentI alTo)
851   {
852     int ratio = (alFrom.isNucleotide() == alTo.isNucleotide() ? 1 : 3);
853
854     AlignedCodonFrame acf = new AlignedCodonFrame();
855
856     for (int i = 0; i < alFrom.getHeight(); i++)
857     {
858       SequenceI seqFrom = alFrom.getSequenceAt(i);
859       SequenceI seqTo = alTo.getSequenceAt(i);
860       MapList ml = new MapList(new int[] { seqFrom.getStart(),
861           seqFrom.getEnd() },
862               new int[] { seqTo.getStart(), seqTo.getEnd() }, ratio, 1);
863       acf.addMap(seqFrom, seqTo, ml);
864     }
865
866     /*
867      * not sure whether mappings 'belong' or protein or nucleotide
868      * alignment, so adding to both ;~)
869      */
870     alFrom.addCodonFrame(acf);
871     alTo.addCodonFrame(acf);
872   }
873
874   /**
875    * Test aligning dna as per protein alignment, for the case where there are
876    * introns (i.e. some dna sites have no mapping from a peptide).
877    * 
878    * @throws IOException
879    */
880   @Test(groups = { "Functional" }, enabled = false)
881   // TODO review / update this test after redesign of alignAs method
882   public void testAlignAs_dnaAsProtein_withIntrons() throws IOException
883   {
884     /*
885      * Load alignments and add mappings for cDNA to protein
886      */
887     String dna1 = "A-Aa-gG-GCC-cT-TT";
888     String dna2 = "c--CCGgg-TT--T-AA-A";
889     AlignmentI al1 = loadAlignment(">Dna1/6-17\n" + dna1
890             + "\n>Dna2/20-31\n" + dna2 + "\n", FileFormat.Fasta);
891     AlignmentI al2 = loadAlignment(
892             ">Pep1/7-9\n-P--YK\n>Pep2/11-13\nG-T--F\n", FileFormat.Fasta);
893     AlignedCodonFrame acf = new AlignedCodonFrame();
894     // Seq1 has intron at dna positions 3,4,9 so splice is AAG GCC TTT
895     // Seq2 has intron at dna positions 1,5,6 so splice is CCG TTT AAA
896     MapList ml1 = new MapList(new int[] { 6, 7, 10, 13, 15, 17 }, new int[]
897     { 7, 9 }, 3, 1);
898     acf.addMap(al1.getSequenceAt(0), al2.getSequenceAt(0), ml1);
899     MapList ml2 = new MapList(new int[] { 21, 23, 26, 31 }, new int[] { 11,
900         13 }, 3, 1);
901     acf.addMap(al1.getSequenceAt(1), al2.getSequenceAt(1), ml2);
902     al2.addCodonFrame(acf);
903
904     /*
905      * Align ignoring gaps in dna introns and exons
906      */
907     ((Alignment) al1).alignAs(al2, false, false);
908     assertEquals("---AAagG------GCCcTTT", al1.getSequenceAt(0)
909             .getSequenceAsString());
910     // note 1 gap in protein corresponds to 'gg-' in DNA (3 positions)
911     assertEquals("cCCGgg-TTT------AAA", al1.getSequenceAt(1)
912             .getSequenceAsString());
913
914     /*
915      * Reset and realign, preserving gaps in dna introns and exons
916      */
917     al1.getSequenceAt(0).setSequence(dna1);
918     al1.getSequenceAt(1).setSequence(dna2);
919     ((Alignment) al1).alignAs(al2, true, true);
920     // String dna1 = "A-Aa-gG-GCC-cT-TT";
921     // String dna2 = "c--CCGgg-TT--T-AA-A";
922     // assumption: we include 'the greater of' protein/dna gap lengths, not both
923     assertEquals("---A-Aa-gG------GCC-cT-TT", al1.getSequenceAt(0)
924             .getSequenceAsString());
925     assertEquals("c--CCGgg-TT--T------AA-A", al1.getSequenceAt(1)
926             .getSequenceAsString());
927   }
928
929   @Test(groups = "Functional")
930   public void testCopyConstructor() throws IOException
931   {
932     AlignmentI protein = loadAlignment(AA_SEQS_1, FileFormat.Fasta);
933     // create sequence and alignment datasets
934     protein.setDataset(null);
935     AlignedCodonFrame acf = new AlignedCodonFrame();
936     List<AlignedCodonFrame> acfList = Arrays.asList(new AlignedCodonFrame[]
937     { acf });
938     protein.getDataset().setCodonFrames(acfList);
939     AlignmentI copy = new Alignment(protein);
940
941     /*
942      * copy has different aligned sequences but the same dataset sequences
943      */
944     assertFalse(copy.getSequenceAt(0) == protein.getSequenceAt(0));
945     assertFalse(copy.getSequenceAt(1) == protein.getSequenceAt(1));
946     assertSame(copy.getSequenceAt(0).getDatasetSequence(), protein
947             .getSequenceAt(0).getDatasetSequence());
948     assertSame(copy.getSequenceAt(1).getDatasetSequence(), protein
949             .getSequenceAt(1).getDatasetSequence());
950
951     // TODO should the copy constructor copy the dataset?
952     // or make a new one referring to the same dataset sequences??
953     assertNull(copy.getDataset());
954     // TODO test metadata is copied when AlignmentI is a dataset
955
956     // assertArrayEquals(copy.getDataset().getSequencesArray(), protein
957     // .getDataset().getSequencesArray());
958   }
959
960   /**
961    * Test behaviour of createDataset
962    * 
963    * @throws IOException
964    */
965   @Test(groups = "Functional")
966   public void testCreateDatasetAlignment() throws IOException
967   {
968     AlignmentI protein = new FormatAdapter().readFile(AA_SEQS_1,
969             DataSourceType.PASTE, FileFormat.Fasta);
970     /*
971      * create a dataset sequence on first sequence
972      * leave the second without one
973      */
974     protein.getSequenceAt(0).createDatasetSequence();
975     assertNotNull(protein.getSequenceAt(0).getDatasetSequence());
976     assertNull(protein.getSequenceAt(1).getDatasetSequence());
977
978     /*
979      * add a mapping to the alignment
980      */
981     AlignedCodonFrame acf = new AlignedCodonFrame();
982     protein.addCodonFrame(acf);
983     assertNull(protein.getDataset());
984     assertTrue(protein.getCodonFrames().contains(acf));
985
986     /*
987      * create the alignment dataset
988      * note this creates sequence datasets where missing
989      * as a side-effect (in this case, on seq2
990      */
991     // TODO promote this method to AlignmentI
992     ((Alignment) protein).createDatasetAlignment();
993
994     AlignmentI ds = protein.getDataset();
995
996     // side-effect: dataset created on second sequence
997     assertNotNull(protein.getSequenceAt(1).getDatasetSequence());
998     // dataset alignment has references to dataset sequences
999     assertEquals(ds.getSequenceAt(0), protein.getSequenceAt(0)
1000             .getDatasetSequence());
1001     assertEquals(ds.getSequenceAt(1), protein.getSequenceAt(1)
1002             .getDatasetSequence());
1003
1004     // codon frames should have been moved to the dataset
1005     // getCodonFrames() should delegate to the dataset:
1006     assertTrue(protein.getCodonFrames().contains(acf));
1007     // prove the codon frames are indeed on the dataset:
1008     assertTrue(ds.getCodonFrames().contains(acf));
1009   }
1010
1011   /**
1012    * tests the addition of *all* sequences referred to by a sequence being added
1013    * to the dataset
1014    */
1015   @Test(groups = "Functional")
1016   public void testCreateDatasetAlignmentWithMappedToSeqs()
1017   {
1018     // Alignment with two sequences, gapped.
1019     SequenceI sq1 = new Sequence("sq1", "A--SDF");
1020     SequenceI sq2 = new Sequence("sq2", "G--TRQ");
1021
1022     // cross-references to two more sequences.
1023     DBRefEntry dbr = new DBRefEntry("SQ1", "", "sq3");
1024     SequenceI sq3 = new Sequence("sq3", "VWANG");
1025     dbr.setMap(new Mapping(sq3, new MapList(new int[] { 1, 4 }, new int[] {
1026         2, 5 }, 1, 1)));
1027     sq1.addDBRef(dbr);
1028
1029     SequenceI sq4 = new Sequence("sq4", "ERKWI");
1030     DBRefEntry dbr2 = new DBRefEntry("SQ2", "", "sq4");
1031     dbr2.setMap(new Mapping(sq4, new MapList(new int[] { 1, 4 }, new int[] {
1032         2, 5 }, 1, 1)));
1033     sq2.addDBRef(dbr2);
1034     // and a 1:1 codonframe mapping between them.
1035     AlignedCodonFrame alc = new AlignedCodonFrame();
1036     alc.addMap(sq1, sq2, new MapList(new int[] { 1, 4 },
1037             new int[] { 1, 4 }, 1, 1));
1038
1039     AlignmentI protein = new Alignment(new SequenceI[] { sq1, sq2 });
1040
1041     /*
1042      * create the alignment dataset
1043      * note this creates sequence datasets where missing
1044      * as a side-effect (in this case, on seq2
1045      */
1046
1047     // TODO promote this method to AlignmentI
1048     ((Alignment) protein).createDatasetAlignment();
1049
1050     AlignmentI ds = protein.getDataset();
1051
1052     // should be 4 sequences in dataset - two materialised, and two propagated
1053     // from dbref
1054     assertEquals(4, ds.getHeight());
1055     assertTrue(ds.getSequences().contains(sq1.getDatasetSequence()));
1056     assertTrue(ds.getSequences().contains(sq2.getDatasetSequence()));
1057     assertTrue(ds.getSequences().contains(sq3));
1058     assertTrue(ds.getSequences().contains(sq4));
1059     // Should have one codon frame mapping between sq1 and sq2 via dataset
1060     // sequences
1061     assertEquals(ds.getCodonFrame(sq1.getDatasetSequence()),
1062             ds.getCodonFrame(sq2.getDatasetSequence()));
1063   }
1064
1065   @Test(groups = "Functional")
1066   public void testAddCodonFrame()
1067   {
1068     AlignmentI align = new Alignment(new SequenceI[] {});
1069     AlignedCodonFrame acf = new AlignedCodonFrame();
1070     align.addCodonFrame(acf);
1071     assertEquals(1, align.getCodonFrames().size());
1072     assertTrue(align.getCodonFrames().contains(acf));
1073     // can't add the same object twice:
1074     align.addCodonFrame(acf);
1075     assertEquals(1, align.getCodonFrames().size());
1076
1077     // create dataset alignment - mappings move to dataset
1078     ((Alignment) align).createDatasetAlignment();
1079     assertSame(align.getCodonFrames(), align.getDataset().getCodonFrames());
1080     assertEquals(1, align.getCodonFrames().size());
1081
1082     AlignedCodonFrame acf2 = new AlignedCodonFrame();
1083     align.addCodonFrame(acf2);
1084     assertTrue(align.getDataset().getCodonFrames().contains(acf));
1085   }
1086
1087   @Test(groups = "Functional")
1088   public void testAddSequencePreserveDatasetIntegrity()
1089   {
1090     Sequence seq = new Sequence("testSeq", "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
1091     Alignment align = new Alignment(new SequenceI[] { seq });
1092     align.createDatasetAlignment();
1093     AlignmentI ds = align.getDataset();
1094     SequenceI copy = new Sequence(seq);
1095     copy.insertCharAt(3, 5, '-');
1096     align.addSequence(copy);
1097     Assert.assertEquals(align.getDataset().getHeight(), 1,
1098             "Dataset shouldn't have more than one sequence.");
1099
1100     Sequence seq2 = new Sequence("newtestSeq", "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
1101     align.addSequence(seq2);
1102     Assert.assertEquals(align.getDataset().getHeight(), 2,
1103             "Dataset should now have two sequences.");
1104
1105     assertAlignmentDatasetRefs(align,
1106             "addSequence broke dataset reference integrity");
1107   }
1108
1109   /**
1110    * Tests that dbrefs with mappings to sequence get updated if the sequence
1111    * acquires a dataset sequence
1112    */
1113   @Test(groups = "Functional")
1114   public void testCreateDataset_updateDbrefMappings()
1115   {
1116     SequenceI pep = new Sequence("pep", "ASD");
1117     SequenceI dna = new Sequence("dna", "aaaGCCTCGGATggg");
1118     SequenceI cds = new Sequence("cds", "GCCTCGGAT");
1119
1120     // add dbref from dna to peptide
1121     DBRefEntry dbr = new DBRefEntry("UNIPROT", "", "pep");
1122     dbr.setMap(new Mapping(pep, new MapList(new int[] { 4, 15 }, new int[] {
1123         1, 4 }, 3, 1)));
1124     dna.addDBRef(dbr);
1125
1126     // add dbref from dna to peptide
1127     DBRefEntry dbr2 = new DBRefEntry("UNIPROT", "", "pep");
1128     dbr2.setMap(new Mapping(pep, new MapList(new int[] { 1, 12 }, new int[]
1129     { 1, 4 }, 3, 1)));
1130     cds.addDBRef(dbr2);
1131
1132     // add dbref from peptide to dna
1133     DBRefEntry dbr3 = new DBRefEntry("EMBL", "", "dna");
1134     dbr3.setMap(new Mapping(dna, new MapList(new int[] { 1, 4 }, new int[] {
1135         4, 15 }, 1, 3)));
1136     pep.addDBRef(dbr3);
1137
1138     // add dbref from peptide to cds
1139     DBRefEntry dbr4 = new DBRefEntry("EMBLCDS", "", "cds");
1140     dbr4.setMap(new Mapping(cds, new MapList(new int[] { 1, 4 }, new int[] {
1141         1, 12 }, 1, 3)));
1142     pep.addDBRef(dbr4);
1143
1144     AlignmentI protein = new Alignment(new SequenceI[] { pep });
1145
1146     /*
1147      * create the alignment dataset
1148      */
1149     ((Alignment) protein).createDatasetAlignment();
1150
1151     AlignmentI ds = protein.getDataset();
1152
1153     // should be 3 sequences in dataset
1154     assertEquals(3, ds.getHeight());
1155     assertTrue(ds.getSequences().contains(pep.getDatasetSequence()));
1156     assertTrue(ds.getSequences().contains(dna));
1157     assertTrue(ds.getSequences().contains(cds));
1158
1159     /*
1160      * verify peptide.cdsdbref.peptidedbref is now mapped to peptide dataset
1161      */
1162     DBRefEntry[] dbRefs = pep.getDBRefs();
1163     assertEquals(2, dbRefs.length);
1164     assertSame(dna, dbRefs[0].map.to);
1165     assertSame(cds, dbRefs[1].map.to);
1166     assertEquals(1, dna.getDBRefs().length);
1167     assertSame(pep.getDatasetSequence(), dna.getDBRefs()[0].map.to);
1168     assertEquals(1, cds.getDBRefs().length);
1169     assertSame(pep.getDatasetSequence(), cds.getDBRefs()[0].map.to);
1170   }
1171
1172   @Test(groups = { "Functional" })
1173   public void testFindGroup()
1174   {
1175     SequenceI seq1 = new Sequence("seq1", "ABCDEF---GHI");
1176     SequenceI seq2 = new Sequence("seq2", "---JKLMNO---");
1177     AlignmentI a = new Alignment(new SequenceI[] { seq1, seq2 });
1178
1179     assertNull(a.findGroup(null, 0));
1180     assertNull(a.findGroup(seq1, 1));
1181     assertNull(a.findGroup(seq1, -1));
1182
1183     /*
1184      * add a group consisting of just "DEF"
1185      */
1186     SequenceGroup sg1 = new SequenceGroup();
1187     sg1.addSequence(seq1, false);
1188     sg1.setStartRes(3);
1189     sg1.setEndRes(5);
1190     a.addGroup(sg1);
1191
1192     assertNull(a.findGroup(seq1, 2)); // position not in group
1193     assertNull(a.findGroup(seq1, 6)); // position not in group
1194     assertNull(a.findGroup(seq2, 5)); // sequence not in group
1195     assertSame(a.findGroup(seq1, 3), sg1); // yes
1196     assertSame(a.findGroup(seq1, 4), sg1);
1197     assertSame(a.findGroup(seq1, 5), sg1);
1198
1199     /*
1200      * add a group consisting of 
1201      * EF--
1202      * KLMN
1203      */
1204     SequenceGroup sg2 = new SequenceGroup();
1205     sg2.addSequence(seq1, false);
1206     sg2.addSequence(seq2, false);
1207     sg2.setStartRes(4);
1208     sg2.setEndRes(7);
1209     a.addGroup(sg2);
1210
1211     assertNull(a.findGroup(seq1, 2)); // unchanged
1212     assertSame(a.findGroup(seq1, 3), sg1); // unchanged
1213     /*
1214      * if a residue is in more than one group, method returns
1215      * the first found (in order groups were added)
1216      */
1217     assertSame(a.findGroup(seq1, 4), sg1);
1218     assertSame(a.findGroup(seq1, 5), sg1);
1219
1220     /*
1221      * seq2 only belongs to the second group
1222      */
1223     assertSame(a.findGroup(seq2, 4), sg2);
1224     assertSame(a.findGroup(seq2, 5), sg2);
1225     assertSame(a.findGroup(seq2, 6), sg2);
1226     assertSame(a.findGroup(seq2, 7), sg2);
1227     assertNull(a.findGroup(seq2, 3));
1228     assertNull(a.findGroup(seq2, 8));
1229   }
1230
1231   @Test(groups = { "Functional" })
1232   public void testDeleteSequenceByIndex()
1233   {
1234     // create random alignment
1235     AlignmentGenerator gen = new AlignmentGenerator(false);
1236     AlignmentI a = gen.generate(20, 15, 123, 5, 5);
1237
1238     // delete sequence 10, alignment reduced by 1
1239     int height = a.getAbsoluteHeight();
1240     a.deleteSequence(10);
1241     assertEquals(a.getAbsoluteHeight(), height - 1);
1242
1243     // try to delete -ve index, nothing happens
1244     a.deleteSequence(-1);
1245     assertEquals(a.getAbsoluteHeight(), height - 1);
1246
1247     // try to delete beyond end of alignment, nothing happens
1248     a.deleteSequence(14);
1249     assertEquals(a.getAbsoluteHeight(), height - 1);
1250   }
1251
1252   @Test(groups = { "Functional" })
1253   public void testDeleteSequenceBySeq()
1254   {
1255     // create random alignment
1256     AlignmentGenerator gen = new AlignmentGenerator(false);
1257     AlignmentI a = gen.generate(20, 15, 123, 5, 5);
1258
1259     // delete sequence 10, alignment reduced by 1
1260     int height = a.getAbsoluteHeight();
1261     SequenceI seq = a.getSequenceAt(10);
1262     a.deleteSequence(seq);
1263     assertEquals(a.getAbsoluteHeight(), height - 1);
1264
1265     // try to delete non-existent sequence, nothing happens
1266     seq = new Sequence("cds", "GCCTCGGAT");
1267     assertEquals(a.getAbsoluteHeight(), height - 1);
1268   }
1269
1270   @Test(groups = { "Functional" })
1271   public void testDeleteHiddenSequence()
1272   {
1273     // create random alignment
1274     AlignmentGenerator gen = new AlignmentGenerator(false);
1275     AlignmentI a = gen.generate(20, 15, 123, 5, 5);
1276
1277     // delete a sequence which is hidden, check it is NOT removed from hidden
1278     // sequences
1279     int height = a.getAbsoluteHeight();
1280     SequenceI seq = a.getSequenceAt(2);
1281     a.getHiddenSequences().hideSequence(seq);
1282     assertEquals(a.getHiddenSequences().getSize(), 1);
1283     a.deleteSequence(2);
1284     assertEquals(a.getAbsoluteHeight(), height - 1);
1285     assertEquals(a.getHiddenSequences().getSize(), 1);
1286
1287     // delete a sequence which is not hidden, check hiddenSequences are not
1288     // affected
1289     a.deleteSequence(10);
1290     assertEquals(a.getAbsoluteHeight(), height - 2);
1291     assertEquals(a.getHiddenSequences().getSize(), 1);
1292   }
1293
1294   @Test(
1295     groups = "Functional",
1296     expectedExceptions = { IllegalArgumentException.class })
1297   public void testSetDataset_selfReference()
1298   {
1299     SequenceI seq = new Sequence("a", "a");
1300     AlignmentI alignment = new Alignment(new SequenceI[] { seq });
1301     alignment.setDataset(alignment);
1302   }
1303 }