2c559092d0c530580fb48dc276cd149ff5fdac53
[jalview.git] / test / jalview / io / Jalview2xmlTests.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.io;
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.assertSame;
27 import static org.testng.AssertJUnit.assertTrue;
28
29 import jalview.api.AlignViewportI;
30 import jalview.api.AlignmentViewPanel;
31 import jalview.api.ViewStyleI;
32 import jalview.bin.Cache;
33 import jalview.datamodel.AlignmentAnnotation;
34 import jalview.datamodel.AlignmentI;
35 import jalview.datamodel.HiddenSequences;
36 import jalview.datamodel.SequenceCollectionI;
37 import jalview.datamodel.SequenceGroup;
38 import jalview.datamodel.SequenceI;
39 import jalview.gui.AlignFrame;
40 import jalview.gui.Desktop;
41 import jalview.gui.Jalview2XML;
42 import jalview.schemes.AnnotationColourGradient;
43 import jalview.schemes.ColourSchemeI;
44 import jalview.viewmodel.AlignmentViewport;
45
46 import java.io.File;
47 import java.util.ArrayList;
48 import java.util.HashMap;
49 import java.util.List;
50 import java.util.Map;
51
52 import org.testng.Assert;
53 import org.testng.AssertJUnit;
54 import org.testng.annotations.AfterClass;
55 import org.testng.annotations.BeforeClass;
56 import org.testng.annotations.Test;
57
58 @Test(singleThreaded = true)
59 public class Jalview2xmlTests
60 {
61
62   /**
63    * @throws java.lang.Exception
64    */
65   @BeforeClass(alwaysRun = true)
66   public static void setUpBeforeClass() throws Exception
67   {
68     jalview.bin.Jalview.main(new String[] { "-props",
69         "test/jalview/io/testProps.jvprops" });
70   }
71
72   /**
73    * @throws java.lang.Exception
74    */
75   @AfterClass(alwaysRun = true)
76   public static void tearDownAfterClass() throws Exception
77   {
78     jalview.gui.Desktop.instance.closeAll_actionPerformed(null);
79   }
80
81   int countDsAnn(jalview.viewmodel.AlignmentViewport avp)
82   {
83     int numdsann = 0;
84     for (SequenceI sq : avp.getAlignment().getDataset().getSequences())
85     {
86       if (sq.getAnnotation() != null)
87       {
88         for (AlignmentAnnotation dssa : sq.getAnnotation())
89         {
90           if (dssa.isValidStruc())
91           {
92             numdsann++;
93           }
94         }
95       }
96     }
97     return numdsann;
98   }
99
100   @Test(groups = { "Functional" })
101   public void testRNAStructureRecovery() throws Exception
102   {
103     String inFile = "examples/RF00031_folded.stk";
104     String tfile = File.createTempFile("JalviewTest", ".jvp")
105             .getAbsolutePath();
106     AlignFrame af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(
107             inFile, FormatAdapter.FILE);
108     assertTrue("Didn't read input file " + inFile, af != null);
109     int olddsann = countDsAnn(af.getViewport());
110     assertTrue("Didn't find any dataset annotations", olddsann > 0);
111     af.rnahelicesColour_actionPerformed(null);
112     assertTrue(
113             "Couldn't apply RNA helices colourscheme",
114             af.getViewport().getGlobalColourScheme() instanceof jalview.schemes.RNAHelicesColour);
115     assertTrue("Failed to store as a project.",
116             af.saveAlignment(tfile, "Jalview"));
117     af.closeMenuItem_actionPerformed(true);
118     af = null;
119     af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(tfile,
120             FormatAdapter.FILE);
121     assertTrue("Failed to import new project", af != null);
122     int newdsann = countDsAnn(af.getViewport());
123     assertTrue(
124             "Differing numbers of dataset sequence annotation\nOriginally "
125                     + olddsann + " and now " + newdsann,
126             olddsann == newdsann);
127     System.out
128             .println("Read in same number of annotations as originally present ("
129                     + olddsann + ")");
130     assertTrue(
131             "RNA helices colourscheme was not applied on import.",
132             af.getViewport().getGlobalColourScheme() instanceof jalview.schemes.RNAHelicesColour);
133   }
134
135   @Test(groups = { "Functional" })
136   public void testTCoffeeScores() throws Exception
137   {
138     String inFile = "examples/uniref50.fa", inAnnot = "examples/uniref50.score_ascii";
139     String tfile = File.createTempFile("JalviewTest", ".jvp")
140             .getAbsolutePath();
141     AlignFrame af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(
142             inFile, FormatAdapter.FILE);
143     assertTrue("Didn't read input file " + inFile, af != null);
144     af.loadJalviewDataFile(inAnnot, FormatAdapter.FILE, null, null);
145     assertTrue(
146             "Didn't set T-coffee colourscheme",
147             af.getViewport().getGlobalColourScheme().getClass()
148                     .equals(jalview.schemes.TCoffeeColourScheme.class));
149     assertTrue(
150             "Recognise T-Coffee score from string",
151             jalview.schemes.ColourSchemeProperty.getColour(af.getViewport()
152                     .getAlignment(),
153                     jalview.schemes.ColourSchemeProperty.getColourName(af
154                             .getViewport().getGlobalColourScheme())) != null);
155
156     assertTrue("Failed to store as a project.",
157             af.saveAlignment(tfile, "Jalview"));
158     af.closeMenuItem_actionPerformed(true);
159     af = null;
160     af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(tfile,
161             FormatAdapter.FILE);
162     assertTrue("Failed to import new project", af != null);
163     assertTrue(
164             "Didn't set T-coffee colourscheme for imported project.",
165             af.getViewport().getGlobalColourScheme().getClass()
166                     .equals(jalview.schemes.TCoffeeColourScheme.class));
167     System.out
168             .println("T-Coffee score shading successfully recovered from project.");
169   }
170
171   @Test(groups = { "Functional" })
172   public void testColourByAnnotScores() throws Exception
173   {
174     String inFile = "examples/uniref50.fa", inAnnot = "examples/testdata/uniref50_iupred.jva";
175     String tfile = File.createTempFile("JalviewTest", ".jvp")
176             .getAbsolutePath();
177     AlignFrame af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(
178             inFile, FormatAdapter.FILE);
179     assertTrue("Didn't read input file " + inFile, af != null);
180     af.loadJalviewDataFile(inAnnot, FormatAdapter.FILE, null, null);
181     AlignmentAnnotation[] aa = af.getViewport().getAlignment()
182             .getSequenceAt(0).getAnnotation("IUPredWS (Short)");
183     assertTrue(
184             "Didn't find any IUPred annotation to use to shade alignment.",
185             aa != null && aa.length > 0);
186     AnnotationColourGradient cs = new jalview.schemes.AnnotationColourGradient(
187             aa[0], null, AnnotationColourGradient.ABOVE_THRESHOLD);
188     AnnotationColourGradient gcs = new jalview.schemes.AnnotationColourGradient(
189             aa[0], null, AnnotationColourGradient.BELOW_THRESHOLD);
190     cs.setSeqAssociated(true);
191     gcs.setSeqAssociated(true);
192     af.changeColour(cs);
193     SequenceGroup sg = new SequenceGroup();
194     sg.setStartRes(57);
195     sg.setEndRes(92);
196     sg.cs = gcs;
197     af.getViewport().getAlignment().addGroup(sg);
198     sg.addSequence(af.getViewport().getAlignment().getSequenceAt(1), false);
199     sg.addSequence(af.getViewport().getAlignment().getSequenceAt(2), true);
200     af.alignPanel.alignmentChanged();
201     assertTrue("Failed to store as a project.",
202             af.saveAlignment(tfile, "Jalview"));
203     af.closeMenuItem_actionPerformed(true);
204     af = null;
205     af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(tfile,
206             FormatAdapter.FILE);
207     assertTrue("Failed to import new project", af != null);
208
209     // check for group and alignment colourschemes
210
211     ColourSchemeI _rcs = af.getViewport().getGlobalColourScheme();
212     ColourSchemeI _rgcs = af.getViewport().getAlignment().getGroups()
213             .get(0).cs;
214     assertTrue("Didn't recover global colourscheme", _rcs != null);
215     assertTrue("Didn't recover annotation colour global scheme",
216             _rcs instanceof AnnotationColourGradient);
217     AnnotationColourGradient __rcs = (AnnotationColourGradient) _rcs;
218     assertTrue("Annotation colourscheme wasn't sequence associated",
219             __rcs.isSeqAssociated());
220
221     boolean diffseqcols = false, diffgseqcols = false;
222     SequenceI[] sqs = af.getViewport().getAlignment().getSequencesArray();
223     for (int p = 0, pSize = af.getViewport().getAlignment().getWidth(); p < pSize
224             && (!diffseqcols || !diffgseqcols); p++)
225     {
226       if (_rcs.findColour(sqs[0].getCharAt(p), p, sqs[0]) != _rcs
227               .findColour(sqs[5].getCharAt(p), p, sqs[5]))
228       {
229         diffseqcols = true;
230       }
231     }
232     assertTrue("Got Different sequence colours", diffseqcols);
233     System.out
234             .println("Per sequence colourscheme (Background) successfully applied and recovered.");
235
236     assertTrue("Didn't recover group colourscheme", _rgcs != null);
237     assertTrue("Didn't recover annotation colour group colourscheme",
238             _rgcs instanceof AnnotationColourGradient);
239     __rcs = (AnnotationColourGradient) _rgcs;
240     assertTrue("Group Annotation colourscheme wasn't sequence associated",
241             __rcs.isSeqAssociated());
242
243     for (int p = 0, pSize = af.getViewport().getAlignment().getWidth(); p < pSize
244             && (!diffseqcols || !diffgseqcols); p++)
245     {
246       if (_rgcs.findColour(sqs[1].getCharAt(p), p, sqs[1]) != _rgcs
247               .findColour(sqs[2].getCharAt(p), p, sqs[2]))
248       {
249         diffgseqcols = true;
250       }
251     }
252     assertTrue("Got Different group sequence colours", diffgseqcols);
253     System.out
254             .println("Per sequence (Group) colourscheme successfully applied and recovered.");
255   }
256
257   @Test(groups = { "Functional" })
258   public void gatherViewsHere() throws Exception
259   {
260     int origCount = Desktop.getAlignFrames() == null ? 0 : Desktop
261             .getAlignFrames().length;
262     AlignFrame af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(
263             "examples/exampleFile_2_7.jar", FormatAdapter.FILE);
264     assertTrue("Didn't read in the example file correctly.", af != null);
265     assertTrue("Didn't gather the views in the example file.",
266             Desktop.getAlignFrames().length == 1 + origCount);
267
268   }
269
270   @Test(groups = { "Functional" })
271   public void viewRefPdbAnnotation() throws Exception
272   {
273     Cache.applicationProperties.setProperty("STRUCT_FROM_PDB",
274             Boolean.TRUE.toString());
275     Cache.applicationProperties.setProperty("ADD_SS_ANN",
276             Boolean.TRUE.toString());
277     AlignFrame af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(
278             "examples/exampleFile_2_7.jar", FormatAdapter.FILE);
279     assertTrue("Didn't read in the example file correctly.", af != null);
280     AlignmentViewPanel sps = null;
281     for (AlignmentViewPanel ap : af.alignPanel.alignFrame.getAlignPanels())
282     {
283       if ("Spinach Feredoxin Structure".equals(ap.getViewName()))
284       {
285         sps = ap;
286         break;
287       }
288     }
289     assertTrue("Couldn't find the structure view", sps != null);
290     SequenceI sq = sps.getAlignment().findName("1A70|");
291     AlignmentAnnotation refan = null;
292     for (AlignmentAnnotation ra : sps.getAlignment()
293             .getAlignmentAnnotation())
294     {
295       if (ra.graph != 0)
296       {
297         refan = ra;
298         break;
299       }
300     }
301     assertTrue("Annotation secondary structure not found.", refan != null);
302     assertTrue("Couldn't find 1a70 null chain", sq != null);
303     // compare the manually added temperature factor annotation
304     // to the track automatically transferred from the pdb structure on load
305     for (AlignmentAnnotation ala : sq.getDatasetSequence().getAnnotation())
306     {
307       AlignmentAnnotation alaa;
308       sq.addAlignmentAnnotation(alaa = new AlignmentAnnotation(ala));
309       alaa.adjustForAlignment();
310       if (ala.graph == refan.graph)
311       {
312         for (int p = 0; p < ala.annotations.length; p++)
313         {
314           sq.findPosition(p);
315           try
316           {
317             assertTrue(
318                     "Mismatch at alignment position " + p,
319                     (alaa.annotations[p] == null && refan.annotations[p] == null)
320                             || alaa.annotations[p].value == refan.annotations[p].value);
321           } catch (NullPointerException q)
322           {
323             Assert.fail("Mismatch of alignment annotations at position "
324                     + p + " Ref seq ann: " + refan.annotations[p]
325                     + " alignment " + alaa.annotations[p]);
326           }
327         }
328       }
329     }
330
331   }
332
333   @Test(groups = { "Functional" })
334   public void testCopyViewSettings() throws Exception
335   {
336     AlignFrame af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(
337             "examples/exampleFile_2_7.jar", FormatAdapter.FILE);
338     assertTrue("Didn't read in the example file correctly.", af != null);
339     AlignmentViewPanel sps = null, groups = null;
340     for (AlignmentViewPanel ap : af.alignPanel.alignFrame.getAlignPanels())
341     {
342       if ("Spinach Feredoxin Structure".equals(ap.getViewName()))
343       {
344         sps = ap;
345       }
346       if (ap.getViewName().contains("MAFFT"))
347       {
348         groups = ap;
349       }
350     }
351     assertTrue("Couldn't find the structure view", sps != null);
352     assertTrue("Couldn't find the MAFFT view", groups != null);
353
354     ViewStyleI structureStyle = sps.getAlignViewport().getViewStyle();
355     ViewStyleI groupStyle = groups.getAlignViewport().getViewStyle();
356     AssertJUnit.assertFalse(structureStyle.sameStyle(groupStyle));
357
358     groups.getAlignViewport().setViewStyle(structureStyle);
359     AssertJUnit.assertFalse(groupStyle.sameStyle(groups.getAlignViewport()
360             .getViewStyle()));
361     Assert.assertTrue(structureStyle.sameStyle(groups.getAlignViewport()
362             .getViewStyle()));
363
364   }
365
366   /**
367    * test store and recovery of expanded views
368    * 
369    * @throws Exception
370    */
371   @Test(groups = { "Functional" }, enabled = true)
372   public void testStoreAndRecoverExpandedviews() throws Exception
373   {
374     Desktop.instance.closeAll_actionPerformed(null);
375
376     AlignFrame af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(
377             "examples/exampleFile_2_7.jar", FormatAdapter.FILE);
378     assertTrue("Didn't read in the example file correctly.", af != null);
379     Assert.assertEquals(Desktop.getAlignFrames().length, 1);
380     String afid = af.getViewport().getSequenceSetId();
381
382     // check FileLoader returned a reference to the one alignFrame that is
383     // actually on the Desktop
384     assertTrue(
385             "Jalview2XML.loadAlignFrame() didn't return correct AlignFrame reference for multiple view window",
386             af == Desktop.getAlignFrameFor(af.getViewport()));
387
388     Desktop.explodeViews(af);
389
390     int oldviews = Desktop.getAlignFrames().length;
391     Assert.assertEquals(Desktop.getAlignFrames().length,
392             Desktop.getAlignmentPanels(afid).length);
393     File tfile = File.createTempFile("testStoreAndRecoverExpanded", ".jvp");
394     try
395     {
396       new Jalview2XML(false).saveState(tfile);
397     } catch (Error e)
398     {
399       Assert.fail("Didn't save the expanded view state", e);
400     } catch (Exception e)
401     {
402       Assert.fail("Didn't save the expanded view state", e);
403     }
404     Desktop.instance.closeAll_actionPerformed(null);
405     if (Desktop.getAlignFrames() != null)
406     {
407       Assert.assertEquals(Desktop.getAlignFrames().length, 0);
408     }
409     af = new jalview.io.FileLoader().LoadFileWaitTillLoaded(
410             tfile.getAbsolutePath(), FormatAdapter.FILE);
411     Assert.assertNotNull(af);
412     Assert.assertEquals(
413             Desktop.getAlignFrames().length,
414             Desktop.getAlignmentPanels(af.getViewport().getSequenceSetId()).length);
415     Assert.assertEquals(
416             oldviews,
417             Desktop.getAlignmentPanels(af.getViewport().getSequenceSetId()).length);
418   }
419
420   /**
421    * Test save and reload of a project with a different representative sequence
422    * in each view.
423    * 
424    * @throws Exception
425    */
426   @Test(groups = { "Functional" })
427   public void testStoreAndRecoverReferenceSeqSettings() throws Exception
428   {
429     Desktop.instance.closeAll_actionPerformed(null);
430     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
431             "examples/exampleFile_2_7.jar", FormatAdapter.FILE);
432     assertTrue("Didn't read in the example file correctly.", af != null);
433     String afid = af.getViewport().getSequenceSetId();
434
435     // remember reference sequence for each panel
436     Map<String, SequenceI> refseqs = new HashMap<String, SequenceI>();
437
438     /*
439      * mark sequence 2, 3, 4.. in panels 1, 2, 3...
440      * as reference sequence for itself and the preceding sequence
441      */
442     int n = 1;
443     for (AlignmentViewPanel ap : Desktop.getAlignmentPanels(afid))
444     {
445       AlignViewportI av = ap.getAlignViewport();
446       AlignmentI alignment = ap.getAlignment();
447       int repIndex = n % alignment.getHeight();
448       SequenceI rep = alignment.getSequenceAt(repIndex);
449       refseqs.put(ap.getViewName(), rep);
450
451       // code from mark/unmark sequence as reference in jalview.gui.PopupMenu
452       // todo refactor this to an alignment view controller
453       av.setDisplayReferenceSeq(true);
454       av.setColourByReferenceSeq(true);
455       av.getAlignment().setSeqrep(rep);
456
457       n++;
458     }
459     File tfile = File.createTempFile("testStoreAndRecoverReferenceSeq",
460             ".jvp");
461     try
462     {
463       new Jalview2XML(false).saveState(tfile);
464     } catch (Throwable e)
465     {
466       Assert.fail("Didn't save the expanded view state", e);
467     }
468     Desktop.instance.closeAll_actionPerformed(null);
469     if (Desktop.getAlignFrames() != null)
470     {
471       Assert.assertEquals(Desktop.getAlignFrames().length, 0);
472     }
473
474     af = new FileLoader().LoadFileWaitTillLoaded(
475             tfile.getAbsolutePath(), FormatAdapter.FILE);
476     afid = af.getViewport().getSequenceSetId();
477
478     for (AlignmentViewPanel ap : Desktop.getAlignmentPanels(afid))
479     {
480       // check representative
481       AlignmentI alignment = ap.getAlignment();
482       SequenceI rep = alignment.getSeqrep();
483       Assert.assertNotNull(rep,
484               "Couldn't restore sequence representative from project");
485       // can't use a strong equals here, because by definition, the sequence IDs
486       // will be different.
487       // could set vamsas session save/restore flag to preserve IDs across
488       // load/saves.
489       Assert.assertEquals(refseqs.get(ap.getViewName()).toString(),
490               rep.toString(),
491               "Representative wasn't the same when recovered.");
492       Assert.assertTrue(ap.getAlignViewport().isDisplayReferenceSeq(),
493               "Display reference sequence view setting not set.");
494       Assert.assertTrue(ap.getAlignViewport().isColourByReferenceSeq(),
495               "Colour By Reference Seq view setting not set.");
496     }
497   }
498
499   @Test(groups = { "Functional" })
500   public void testIsVersionStringLaterThan()
501   {
502     /*
503      * No version / development / test / autobuild is leniently assumed to be
504      * compatible
505      */
506     assertTrue(Jalview2XML.isVersionStringLaterThan(null, null));
507     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", null));
508     assertTrue(Jalview2XML.isVersionStringLaterThan(null, "2.8.3"));
509     assertTrue(Jalview2XML.isVersionStringLaterThan(null,
510             "Development Build"));
511     assertTrue(Jalview2XML.isVersionStringLaterThan(null,
512             "DEVELOPMENT BUILD"));
513     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3",
514             "Development Build"));
515     assertTrue(Jalview2XML.isVersionStringLaterThan(null, "Test"));
516     assertTrue(Jalview2XML.isVersionStringLaterThan(null, "TEST"));
517     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "Test"));
518     assertTrue(Jalview2XML
519             .isVersionStringLaterThan(null, "Automated Build"));
520     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3",
521             "Automated Build"));
522     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3",
523             "AUTOMATED BUILD"));
524
525     /*
526      * same version returns true i.e. compatible
527      */
528     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8", "2.8"));
529     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.8.3"));
530     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3b1", "2.8.3b1"));
531     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3B1", "2.8.3b1"));
532     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3b1", "2.8.3B1"));
533
534     /*
535      * later version returns true
536      */
537     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.8.4"));
538     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.9"));
539     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.9.2"));
540     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8", "2.8.3"));
541     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.8.3b1"));
542
543     /*
544      * earlier version returns false
545      */
546     assertFalse(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.8"));
547     assertFalse(Jalview2XML.isVersionStringLaterThan("2.8.4", "2.8.3"));
548     assertFalse(Jalview2XML.isVersionStringLaterThan("2.8.3b1", "2.8.3"));
549     assertFalse(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.8.2b1"));
550     assertFalse(Jalview2XML.isVersionStringLaterThan("2.8.0b2", "2.8.0b1"));
551   }
552
553   /**
554    * Test save and reload of a project with a different sequence group (and
555    * representative sequence) in each view.
556    * 
557    * @throws Exception
558    */
559   @Test(groups = { "Functional" })
560   public void testStoreAndRecoverGroupRepSeqs() throws Exception
561   {
562     Desktop.instance.closeAll_actionPerformed(null);
563     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
564             "examples/uniref50.fa", FormatAdapter.FILE);
565     assertTrue("Didn't read in the example file correctly.", af != null);
566     String afid = af.getViewport().getSequenceSetId();
567     // make a second view of the alignment
568     af.newView_actionPerformed(null);
569   
570     /*
571      * remember representative and hidden sequences marked 
572      * on each panel
573      */
574     Map<String, SequenceI> repSeqs = new HashMap<String, SequenceI>();
575     Map<String, List<String>> hiddenSeqNames = new HashMap<String, List<String>>();
576   
577     /*
578      * mark sequence 2, 3, 4.. in panels 1, 2, 3...
579      * as reference sequence for itself and the preceding sequence
580      */
581     int n = 1;
582     for (AlignmentViewPanel ap : Desktop.getAlignmentPanels(afid))
583     {
584       AlignViewportI av = ap.getAlignViewport();
585       AlignmentI alignment = ap.getAlignment();
586       int repIndex = n % alignment.getHeight();
587       // ensure at least one preceding sequence i.e. index >= 1
588       repIndex = Math.max(repIndex, 1);
589       SequenceI repSeq = alignment.getSequenceAt(repIndex);
590       repSeqs.put(ap.getViewName(), repSeq);
591       List<String> hiddenNames = new ArrayList<String>();
592       hiddenSeqNames.put(ap.getViewName(), hiddenNames);
593   
594       /*
595        * have rep sequence represent itself and the one before it
596        * this hides the group (except for the rep seq)
597        */
598       SequenceGroup sg = new SequenceGroup();
599       sg.addSequence(repSeq, false);
600       SequenceI precedingSeq = alignment.getSequenceAt(repIndex - 1);
601       sg.addSequence(precedingSeq, false);
602       sg.setSeqrep(repSeq);
603       assertTrue(sg.getSequences().contains(repSeq));
604       assertTrue(sg.getSequences().contains(precedingSeq));
605       av.setSelectionGroup(sg);
606       assertSame(repSeq, sg.getSeqrep());
607
608       /*
609        * represent group with sequence adds to a map of hidden rep sequences
610        * (it does not create a group on the alignment) 
611        */
612       ((AlignmentViewport) av).hideSequences(repSeq, true);
613       assertSame(repSeq, sg.getSeqrep());
614       assertTrue(sg.getSequences().contains(repSeq));
615       assertTrue(sg.getSequences().contains(precedingSeq));
616       assertTrue("alignment has groups", alignment.getGroups().isEmpty());
617       Map<SequenceI, SequenceCollectionI> hiddenRepSeqsMap = av.getHiddenRepSequences();
618       assertNotNull(hiddenRepSeqsMap);
619       assertEquals(1, hiddenRepSeqsMap.size());
620       assertSame(sg, hiddenRepSeqsMap.get(repSeq));
621       assertTrue(alignment.getHiddenSequences().isHidden(precedingSeq));
622       assertFalse(alignment.getHiddenSequences().isHidden(repSeq));
623       hiddenNames.add(precedingSeq.getName());
624
625       n++;
626     }
627     File tfile = File
628             .createTempFile("testStoreAndRecoverGroupReps",
629             ".jvp");
630     try
631     {
632       new Jalview2XML(false).saveState(tfile);
633     } catch (Throwable e)
634     {
635       Assert.fail("Didn't save the expanded view state", e);
636     }
637     Desktop.instance.closeAll_actionPerformed(null);
638     if (Desktop.getAlignFrames() != null)
639     {
640       Assert.assertEquals(Desktop.getAlignFrames().length, 0);
641     }
642   
643     af = new FileLoader().LoadFileWaitTillLoaded(
644             tfile.getAbsolutePath(), FormatAdapter.FILE);
645     afid = af.getViewport().getSequenceSetId();
646   
647     for (AlignmentViewPanel ap : Desktop.getAlignmentPanels(afid))
648     {
649       String viewName = ap.getViewName();
650       AlignViewportI av = ap.getAlignViewport();
651       AlignmentI alignment = ap.getAlignment();
652       List<SequenceGroup> groups = alignment.getGroups();
653       assertNotNull(groups);
654       assertTrue("Alignment has groups", groups.isEmpty());
655       Map<SequenceI, SequenceCollectionI> hiddenRepSeqsMap = av
656               .getHiddenRepSequences();
657       assertNotNull("No hidden represented sequences", hiddenRepSeqsMap);
658       assertEquals(1, hiddenRepSeqsMap.size());
659       assertEquals(repSeqs.get(viewName).getDisplayId(true),
660               hiddenRepSeqsMap.keySet().iterator().next()
661                       .getDisplayId(true));
662
663       /*
664        * verify hidden sequences in restored panel
665        */
666       List<String> hidden = hiddenSeqNames.get(ap.getViewName());
667       HiddenSequences hs = alignment.getHiddenSequences();
668       assertEquals(
669               "wrong number of restored hidden sequences in "
670                       + ap.getViewName(),
671               hidden.size(), hs.getSize());
672     }
673   }
674 }