Merge branch 'merge/JAL-3285_mchmmer_with_211_develop' into alpha/JAL-3362_Jalview_21...
[jalview.git] / test / jalview / project / 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.project;
22
23 import static org.testng.Assert.assertEquals;
24 import static org.testng.Assert.assertFalse;
25 import static org.testng.Assert.assertNotNull;
26 import static org.testng.Assert.assertNull;
27 import static org.testng.Assert.assertSame;
28 import static org.testng.Assert.assertTrue;
29
30 import jalview.analysis.scoremodels.SimilarityParams;
31 import jalview.api.AlignViewportI;
32 import jalview.api.AlignmentViewPanel;
33 import jalview.api.FeatureColourI;
34 import jalview.api.ViewStyleI;
35 import jalview.datamodel.AlignmentAnnotation;
36 import jalview.datamodel.AlignmentI;
37 import jalview.datamodel.DBRefEntry;
38 import jalview.datamodel.GeneLocus;
39 import jalview.datamodel.HiddenMarkovModel;
40 import jalview.datamodel.HiddenSequences;
41 import jalview.datamodel.Mapping;
42 import jalview.datamodel.PDBEntry;
43 import jalview.datamodel.PDBEntry.Type;
44 import jalview.datamodel.SequenceCollectionI;
45 import jalview.datamodel.SequenceFeature;
46 import jalview.datamodel.SequenceGroup;
47 import jalview.datamodel.SequenceI;
48 import jalview.datamodel.features.FeatureMatcher;
49 import jalview.datamodel.features.FeatureMatcherSet;
50 import jalview.datamodel.features.FeatureMatcherSetI;
51 import jalview.gui.AlignFrame;
52 import jalview.gui.AlignmentPanel;
53 import jalview.gui.Desktop;
54 import jalview.gui.FeatureRenderer;
55 import jalview.gui.JvOptionPane;
56 import jalview.gui.PCAPanel;
57 import jalview.gui.PopupMenu;
58 import jalview.gui.SliderPanel;
59 import jalview.io.DataSourceType;
60 import jalview.io.FileFormat;
61 import jalview.io.FileLoader;
62 import jalview.io.Jalview2xmlBase;
63 import jalview.renderer.ResidueShaderI;
64 import jalview.schemes.AnnotationColourGradient;
65 import jalview.schemes.BuriedColourScheme;
66 import jalview.schemes.ColourSchemeI;
67 import jalview.schemes.ColourSchemeProperty;
68 import jalview.schemes.FeatureColour;
69 import jalview.schemes.JalviewColourScheme;
70 import jalview.schemes.RNAHelicesColour;
71 import jalview.schemes.StrandColourScheme;
72 import jalview.schemes.TCoffeeColourScheme;
73 import jalview.structure.StructureImportSettings;
74 import jalview.util.MapList;
75 import jalview.util.matcher.Condition;
76 import jalview.viewmodel.AlignmentViewport;
77
78 import java.awt.Color;
79 import java.io.File;
80 import java.io.IOException;
81 import java.util.ArrayList;
82 import java.util.HashMap;
83 import java.util.List;
84 import java.util.Map;
85
86 import javax.swing.JInternalFrame;
87
88 import org.testng.Assert;
89 import org.testng.AssertJUnit;
90 import org.testng.annotations.BeforeClass;
91 import org.testng.annotations.Test;
92
93 import junit.extensions.PA;
94
95 @Test(singleThreaded = true)
96 public class Jalview2xmlTests extends Jalview2xmlBase
97 {
98
99   @Override
100   @BeforeClass(alwaysRun = true)
101   public void setUpJvOptionPane()
102   {
103     JvOptionPane.setInteractiveMode(false);
104     JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
105   }
106
107   @Test(groups = { "Functional" })
108   public void testRNAStructureRecovery() throws Exception
109   {
110     String inFile = "examples/RF00031_folded.stk";
111     String tfile = File.createTempFile("JalviewTest", ".jvp")
112             .getAbsolutePath();
113     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(inFile,
114             DataSourceType.FILE);
115     assertNotNull(af, "Didn't read input file " + inFile);
116     int olddsann = countDsAnn(af.getViewport());
117     assertTrue(olddsann > 0, "Didn't find any dataset annotations");
118     af.changeColour_actionPerformed(
119             JalviewColourScheme.RNAHelices.toString());
120     assertTrue(
121             af.getViewport()
122                     .getGlobalColourScheme() instanceof RNAHelicesColour,
123             "Couldn't apply RNA helices colourscheme");
124     assertTrue(af.saveAlignment(tfile, FileFormat.Jalview),
125             "Failed to store as a project.");
126     af.closeMenuItem_actionPerformed(true);
127     af = null;
128     af = new FileLoader().LoadFileWaitTillLoaded(tfile,
129             DataSourceType.FILE);
130     assertNotNull(af, "Failed to import new project");
131     int newdsann = countDsAnn(af.getViewport());
132     assertEquals(olddsann, newdsann,
133             "Differing numbers of dataset sequence annotation\nOriginally "
134                     + olddsann + " and now " + newdsann);
135     System.out.println(
136             "Read in same number of annotations as originally present ("
137                     + olddsann + ")");
138     assertTrue(
139
140             af.getViewport()
141                     .getGlobalColourScheme() instanceof RNAHelicesColour,
142             "RNA helices colourscheme was not applied on import.");
143   }
144
145   @Test(groups = { "Functional" })
146   public void testTCoffeeScores() throws Exception
147   {
148     String inFile = "examples/uniref50.fa",
149             inAnnot = "examples/uniref50.score_ascii";
150     String tfile = File.createTempFile("JalviewTest", ".jvp")
151             .getAbsolutePath();
152     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(inFile,
153             DataSourceType.FILE);
154     assertNotNull(af, "Didn't read input file " + inFile);
155     af.loadJalviewDataFile(inAnnot, DataSourceType.FILE, null, null);
156     AlignViewportI viewport = af.getViewport();
157     assertSame(viewport.getGlobalColourScheme().getClass(),
158             TCoffeeColourScheme.class, "Didn't set T-coffee colourscheme");
159     assertNotNull(
160             ColourSchemeProperty.getColourScheme(viewport,
161                     viewport.getAlignment(),
162                     viewport.getGlobalColourScheme()
163                             .getSchemeName()),
164             "Recognise T-Coffee score from string");
165
166     assertTrue(af.saveAlignment(tfile, FileFormat.Jalview),
167             "Failed to store as a project.");
168     af.closeMenuItem_actionPerformed(true);
169     af = null;
170     af = new FileLoader().LoadFileWaitTillLoaded(tfile,
171             DataSourceType.FILE);
172     assertNotNull(af, "Failed to import new project");
173     assertSame(af.getViewport().getGlobalColourScheme().getClass(),
174             TCoffeeColourScheme.class,
175             "Didn't set T-coffee colourscheme for imported project.");
176     System.out.println(
177             "T-Coffee score shading successfully recovered from project.");
178   }
179
180   @Test(groups = { "Functional" })
181   public void testColourByAnnotScores() throws Exception
182   {
183     String inFile = "examples/uniref50.fa",
184             inAnnot = "examples/testdata/uniref50_iupred.jva";
185     String tfile = File.createTempFile("JalviewTest", ".jvp")
186             .getAbsolutePath();
187     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(inFile,
188             DataSourceType.FILE);
189     assertNotNull(af, "Didn't read input file " + inFile);
190     af.loadJalviewDataFile(inAnnot, DataSourceType.FILE, null, null);
191     AlignmentAnnotation[] aa = af.getViewport().getAlignment()
192             .getSequenceAt(0).getAnnotation("IUPredWS (Short)");
193     assertTrue(
194
195             aa != null && aa.length > 0,
196             "Didn't find any IUPred annotation to use to shade alignment.");
197     AnnotationColourGradient cs = new AnnotationColourGradient(aa[0], null,
198             AnnotationColourGradient.ABOVE_THRESHOLD);
199     AnnotationColourGradient gcs = new AnnotationColourGradient(aa[0], null,
200             AnnotationColourGradient.BELOW_THRESHOLD);
201     cs.setSeqAssociated(true);
202     gcs.setSeqAssociated(true);
203     af.changeColour(cs);
204     SequenceGroup sg = new SequenceGroup();
205     sg.setStartRes(57);
206     sg.setEndRes(92);
207     sg.cs.setColourScheme(gcs);
208     af.getViewport().getAlignment().addGroup(sg);
209     sg.addSequence(af.getViewport().getAlignment().getSequenceAt(1), false);
210     sg.addSequence(af.getViewport().getAlignment().getSequenceAt(2), true);
211     af.alignPanel.alignmentChanged();
212     assertTrue(af.saveAlignment(tfile, FileFormat.Jalview),
213             "Failed to store as a project.");
214     af.closeMenuItem_actionPerformed(true);
215     af = null;
216     af = new FileLoader().LoadFileWaitTillLoaded(tfile,
217             DataSourceType.FILE);
218     assertNotNull(af, "Failed to import new project");
219
220     // check for group and alignment colourschemes
221
222     ColourSchemeI _rcs = af.getViewport().getGlobalColourScheme();
223     ColourSchemeI _rgcs = af.getViewport().getAlignment().getGroups().get(0)
224             .getColourScheme();
225     assertNotNull(_rcs, "Didn't recover global colourscheme");
226     assertTrue(_rcs instanceof AnnotationColourGradient,
227             "Didn't recover annotation colour global scheme");
228     AnnotationColourGradient __rcs = (AnnotationColourGradient) _rcs;
229     assertTrue(__rcs.isSeqAssociated(),
230             "Annotation colourscheme wasn't sequence associated");
231
232     boolean diffseqcols = false, diffgseqcols = false;
233     SequenceI[] sqs = af.getViewport().getAlignment().getSequencesArray();
234     for (int p = 0, pSize = af.getViewport().getAlignment()
235             .getWidth(); p < pSize && (!diffseqcols || !diffgseqcols); p++)
236     {
237       if (_rcs.findColour(sqs[0].getCharAt(p), p, sqs[0], null, 0f) != _rcs
238               .findColour(sqs[5].getCharAt(p), p, sqs[5], null, 0f))
239       {
240         diffseqcols = true;
241       }
242     }
243     assertTrue(diffseqcols, "Got Different sequence colours");
244     System.out.println(
245             "Per sequence colourscheme (Background) successfully applied and recovered.");
246
247     assertNotNull(_rgcs, "Didn't recover group colourscheme");
248     assertTrue(_rgcs instanceof AnnotationColourGradient,
249             "Didn't recover annotation colour group colourscheme");
250     __rcs = (AnnotationColourGradient) _rgcs;
251     assertTrue(__rcs.isSeqAssociated(),
252             "Group Annotation colourscheme wasn't sequence associated");
253
254     for (int p = 0, pSize = af.getViewport().getAlignment()
255             .getWidth(); p < pSize && (!diffseqcols || !diffgseqcols); p++)
256     {
257       if (_rgcs.findColour(sqs[1].getCharAt(p), p, sqs[1], null,
258               0f) != _rgcs.findColour(sqs[2].getCharAt(p), p, sqs[2], null,
259                       0f))
260       {
261         diffgseqcols = true;
262       }
263     }
264     assertTrue(diffgseqcols, "Got Different group sequence colours");
265     System.out.println(
266             "Per sequence (Group) colourscheme successfully applied and recovered.");
267   }
268
269   @Test(groups = { "Functional" })
270   public void gatherViewsHere() throws Exception
271   {
272     int origCount = Desktop.getAlignFrames() == null ? 0
273             : Desktop.getAlignFrames().length;
274     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
275             "examples/exampleFile_2_7.jar", DataSourceType.FILE);
276     assertNotNull(af, "Didn't read in the example file correctly.");
277     assertTrue(Desktop.getAlignFrames().length == 1 + origCount,
278             "Didn't gather the views in the example file.");
279
280   }
281
282   /**
283    * Test for JAL-2223 - multiple mappings in View Mapping report
284    * 
285    * @throws Exception
286    */
287   @Test(groups = { "Functional" })
288   public void noDuplicatePdbMappingsMade() throws Exception
289   {
290     StructureImportSettings.setProcessSecondaryStructure(true);
291     StructureImportSettings.setVisibleChainAnnotation(true);
292     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
293             "examples/exampleFile_2_7.jar", DataSourceType.FILE);
294     assertNotNull(af, "Didn't read in the example file correctly.");
295
296     // locate Jmol viewer
297     // count number of PDB mappings the structure selection manager holds -
298     String pdbFile = af.getCurrentView().getStructureSelectionManager()
299             .findFileForPDBId("1A70");
300     assertEquals(
301             af.getCurrentView().getStructureSelectionManager()
302                     .getMapping(pdbFile).length,
303             2, "Expected only two mappings for 1A70");
304
305   }
306
307   @Test(groups = { "Functional" })
308   public void viewRefPdbAnnotation() throws Exception
309   {
310     StructureImportSettings.setProcessSecondaryStructure(true);
311     StructureImportSettings.setVisibleChainAnnotation(true);
312     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
313             "examples/exampleFile_2_7.jar", DataSourceType.FILE);
314     assertNotNull(af, "Didn't read in the example file correctly.");
315     AlignmentViewPanel sps = null;
316     for (AlignmentViewPanel ap : af.alignPanel.alignFrame.getAlignPanels())
317     {
318       if ("Spinach Feredoxin Structure".equals(ap.getViewName()))
319       {
320         sps = ap;
321         break;
322       }
323     }
324     assertNotNull(sps, "Couldn't find the structure view");
325     AlignmentAnnotation refan = null;
326     for (AlignmentAnnotation ra : sps.getAlignment()
327             .getAlignmentAnnotation())
328     {
329       if (ra.graph != 0)
330       {
331         refan = ra;
332         break;
333       }
334     }
335     assertNotNull(refan, "Annotation secondary structure not found.");
336     SequenceI sq = sps.getAlignment().findName("1A70|");
337     assertNotNull(sq, "Couldn't find 1a70 null chain");
338     // compare the manually added temperature factor annotation
339     // to the track automatically transferred from the pdb structure on load
340     assertNotNull(sq.getDatasetSequence().getAnnotation(),
341             "1a70 has no annotation");
342     for (AlignmentAnnotation ala : sq.getDatasetSequence().getAnnotation())
343     {
344       AlignmentAnnotation alaa;
345       sq.addAlignmentAnnotation(alaa = new AlignmentAnnotation(ala));
346       alaa.adjustForAlignment();
347       if (ala.graph == refan.graph)
348       {
349         for (int p = 0; p < ala.annotations.length; p++)
350         {
351           sq.findPosition(p);
352           try
353           {
354             assertTrue((alaa.annotations[p] == null
355                     && refan.annotations[p] == null)
356                     || alaa.annotations[p].value == refan.annotations[p].value,
357                     "Mismatch at alignment position " + p);
358           } catch (NullPointerException q)
359           {
360             Assert.fail("Mismatch of alignment annotations at position " + p
361                     + " Ref seq ann: " + refan.annotations[p]
362                     + " alignment " + alaa.annotations[p]);
363           }
364         }
365       }
366     }
367
368   }
369
370   @Test(groups = { "Functional" })
371   public void testCopyViewSettings() throws Exception
372   {
373     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
374             "examples/exampleFile_2_7.jar", DataSourceType.FILE);
375     assertNotNull(af, "Didn't read in the example file correctly.");
376     AlignmentViewPanel sps = null, groups = null;
377     for (AlignmentViewPanel ap : af.alignPanel.alignFrame.getAlignPanels())
378     {
379       if ("Spinach Feredoxin Structure".equals(ap.getViewName()))
380       {
381         sps = ap;
382       }
383       if (ap.getViewName().contains("MAFFT"))
384       {
385         groups = ap;
386       }
387     }
388     assertNotNull(sps, "Couldn't find the structure view");
389     assertNotNull(groups, "Couldn't find the MAFFT view");
390
391     ViewStyleI structureStyle = sps.getAlignViewport().getViewStyle();
392     ViewStyleI groupStyle = groups.getAlignViewport().getViewStyle();
393     AssertJUnit.assertFalse(structureStyle.sameStyle(groupStyle));
394
395     groups.getAlignViewport().setViewStyle(structureStyle);
396     AssertJUnit.assertFalse(
397             groupStyle.sameStyle(groups.getAlignViewport().getViewStyle()));
398     Assert.assertTrue(structureStyle
399             .sameStyle(groups.getAlignViewport().getViewStyle()));
400
401   }
402
403   /**
404    * test store and recovery of expanded views
405    * 
406    * @throws Exception
407    */
408   @Test(groups = { "Functional" }, enabled = true)
409   public void testStoreAndRecoverExpandedviews() throws Exception
410   {
411     Desktop.instance.closeAll_actionPerformed(null);
412
413     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
414             "examples/exampleFile_2_7.jar", DataSourceType.FILE);
415     Assert.assertEquals(Desktop.getAlignFrames().length, 1);
416     String afid = af.getViewport().getSequenceSetId();
417
418     // check FileLoader returned a reference to the one alignFrame that is
419     // actually on the Desktop
420     assertSame(af, Desktop.getAlignFrameFor(af.getViewport()),
421             "Jalview2XML.loadAlignFrame() didn't return correct AlignFrame reference for multiple view window");
422
423     Desktop.explodeViews(af);
424
425     int oldviews = Desktop.getAlignFrames().length;
426     Assert.assertEquals(Desktop.getAlignFrames().length,
427             Desktop.getAlignmentPanels(afid).length);
428     File tfile = File.createTempFile("testStoreAndRecoverExpanded", ".jvp");
429     try
430     {
431       new Jalview2XML(false).saveState(tfile);
432     } catch (Error e)
433     {
434       Assert.fail("Didn't save the expanded view state", e);
435     } catch (Exception e)
436     {
437       Assert.fail("Didn't save the expanded view state", e);
438     }
439     Desktop.instance.closeAll_actionPerformed(null);
440     if (Desktop.getAlignFrames() != null)
441     {
442       Assert.assertEquals(Desktop.getAlignFrames().length, 0);
443     }
444     af = new FileLoader().LoadFileWaitTillLoaded(tfile.getAbsolutePath(),
445             DataSourceType.FILE);
446     Assert.assertNotNull(af);
447     Assert.assertEquals(Desktop.getAlignFrames().length,
448             Desktop.getAlignmentPanels(
449                     af.getViewport().getSequenceSetId()).length);
450     Assert.assertEquals(
451             Desktop.getAlignmentPanels(
452                     af.getViewport().getSequenceSetId()).length,
453             oldviews);
454   }
455
456   /**
457    * Test save and reload of a project with a different representative sequence
458    * in each view.
459    * 
460    * @throws Exception
461    */
462   @Test(groups = { "Functional" })
463   public void testStoreAndRecoverReferenceSeqSettings() throws Exception
464   {
465     Desktop.instance.closeAll_actionPerformed(null);
466     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
467             "examples/exampleFile_2_7.jar", DataSourceType.FILE);
468     assertNotNull(af, "Didn't read in the example file correctly.");
469     String afid = af.getViewport().getSequenceSetId();
470
471     // remember reference sequence for each panel
472     Map<String, SequenceI> refseqs = new HashMap<>();
473
474     /*
475      * mark sequence 2, 3, 4.. in panels 1, 2, 3...
476      * as reference sequence for itself and the preceding sequence
477      */
478     int n = 1;
479     for (AlignmentViewPanel ap : Desktop.getAlignmentPanels(afid))
480     {
481       AlignViewportI av = ap.getAlignViewport();
482       AlignmentI alignment = ap.getAlignment();
483       int repIndex = n % alignment.getHeight();
484       SequenceI rep = alignment.getSequenceAt(repIndex);
485       refseqs.put(ap.getViewName(), rep);
486
487       // code from mark/unmark sequence as reference in jalview.gui.PopupMenu
488       // todo refactor this to an alignment view controller
489       av.setDisplayReferenceSeq(true);
490       av.setColourByReferenceSeq(true);
491       av.getAlignment().setSeqrep(rep);
492
493       n++;
494     }
495     File tfile = File.createTempFile("testStoreAndRecoverReferenceSeq",
496             ".jvp");
497     try
498     {
499       new Jalview2XML(false).saveState(tfile);
500     } catch (Throwable e)
501     {
502       Assert.fail("Didn't save the expanded view state", e);
503     }
504     Desktop.instance.closeAll_actionPerformed(null);
505     if (Desktop.getAlignFrames() != null)
506     {
507       Assert.assertEquals(Desktop.getAlignFrames().length, 0);
508     }
509
510     af = new FileLoader().LoadFileWaitTillLoaded(tfile.getAbsolutePath(),
511             DataSourceType.FILE);
512     afid = af.getViewport().getSequenceSetId();
513
514     for (AlignmentViewPanel ap : Desktop.getAlignmentPanels(afid))
515     {
516       // check representative
517       AlignmentI alignment = ap.getAlignment();
518       SequenceI rep = alignment.getSeqrep();
519       Assert.assertNotNull(rep,
520               "Couldn't restore sequence representative from project");
521       // can't use a strong equals here, because by definition, the sequence IDs
522       // will be different.
523       // could set vamsas session save/restore flag to preserve IDs across
524       // load/saves.
525       Assert.assertEquals(refseqs.get(ap.getViewName()).toString(),
526               rep.toString(),
527               "Representative wasn't the same when recovered.");
528       Assert.assertTrue(ap.getAlignViewport().isDisplayReferenceSeq(),
529               "Display reference sequence view setting not set.");
530       Assert.assertTrue(ap.getAlignViewport().isColourByReferenceSeq(),
531               "Colour By Reference Seq view setting not set.");
532     }
533   }
534
535   @Test(groups = { "Functional" })
536   public void testIsVersionStringLaterThan()
537   {
538     /*
539      * No version / development / test / autobuild is leniently assumed to be
540      * compatible
541      */
542     assertTrue(Jalview2XML.isVersionStringLaterThan(null, null));
543     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", null));
544     assertTrue(Jalview2XML.isVersionStringLaterThan(null, "2.8.3"));
545     assertTrue(Jalview2XML.isVersionStringLaterThan(null,
546             "Development Build"));
547     assertTrue(Jalview2XML.isVersionStringLaterThan(null,
548             "DEVELOPMENT BUILD"));
549     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3",
550             "Development Build"));
551     assertTrue(Jalview2XML.isVersionStringLaterThan(null, "Test"));
552     assertTrue(Jalview2XML.isVersionStringLaterThan(null, "TEST"));
553     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "Test"));
554     assertTrue(
555             Jalview2XML.isVersionStringLaterThan(null, "Automated Build"));
556     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3",
557             "Automated Build"));
558     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3",
559             "AUTOMATED BUILD"));
560
561     /*
562      * same version returns true i.e. compatible
563      */
564     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8", "2.8"));
565     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.8.3"));
566     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3b1", "2.8.3b1"));
567     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3B1", "2.8.3b1"));
568     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3b1", "2.8.3B1"));
569
570     /*
571      * later version returns true
572      */
573     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.8.4"));
574     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.9"));
575     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.9.2"));
576     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8", "2.8.3"));
577     assertTrue(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.8.3b1"));
578
579     /*
580      * earlier version returns false
581      */
582     assertFalse(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.8"));
583     assertFalse(Jalview2XML.isVersionStringLaterThan("2.8.4", "2.8.3"));
584     assertFalse(Jalview2XML.isVersionStringLaterThan("2.8.3b1", "2.8.3"));
585     assertFalse(Jalview2XML.isVersionStringLaterThan("2.8.3", "2.8.2b1"));
586     assertFalse(Jalview2XML.isVersionStringLaterThan("2.8.0b2", "2.8.0b1"));
587   }
588
589   /**
590    * Test save and reload of a project with a different sequence group (and
591    * representative sequence) in each view.
592    * 
593    * @throws Exception
594    */
595   @Test(groups = { "Functional" })
596   public void testStoreAndRecoverGroupRepSeqs() throws Exception
597   {
598     Desktop.instance.closeAll_actionPerformed(null);
599     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
600             "examples/uniref50.fa", DataSourceType.FILE);
601     assertNotNull(af, "Didn't read in the example file correctly.");
602     String afid = af.getViewport().getSequenceSetId();
603     // make a second view of the alignment
604     af.newView_actionPerformed(null);
605
606     /*
607      * remember representative and hidden sequences marked 
608      * on each panel
609      */
610     Map<String, SequenceI> repSeqs = new HashMap<>();
611     Map<String, List<String>> hiddenSeqNames = new HashMap<>();
612
613     /*
614      * mark sequence 2, 3, 4.. in panels 1, 2, 3...
615      * as reference sequence for itself and the preceding sequence
616      */
617     int n = 1;
618     for (AlignmentViewPanel ap : Desktop.getAlignmentPanels(afid))
619     {
620       AlignViewportI av = ap.getAlignViewport();
621       AlignmentI alignment = ap.getAlignment();
622       int repIndex = n % alignment.getHeight();
623       // ensure at least one preceding sequence i.e. index >= 1
624       repIndex = Math.max(repIndex, 1);
625       SequenceI repSeq = alignment.getSequenceAt(repIndex);
626       repSeqs.put(ap.getViewName(), repSeq);
627       List<String> hiddenNames = new ArrayList<>();
628       hiddenSeqNames.put(ap.getViewName(), hiddenNames);
629
630       /*
631        * have rep sequence represent itself and the one before it
632        * this hides the group (except for the rep seq)
633        */
634       SequenceGroup sg = new SequenceGroup();
635       sg.addSequence(repSeq, false);
636       SequenceI precedingSeq = alignment.getSequenceAt(repIndex - 1);
637       sg.addSequence(precedingSeq, false);
638       sg.setSeqrep(repSeq);
639       assertTrue(sg.getSequences().contains(repSeq));
640       assertTrue(sg.getSequences().contains(precedingSeq));
641       av.setSelectionGroup(sg);
642       assertSame(repSeq, sg.getSeqrep());
643
644       /*
645        * represent group with sequence adds to a map of hidden rep sequences
646        * (it does not create a group on the alignment) 
647        */
648       ((AlignmentViewport) av).hideSequences(repSeq, true);
649       assertSame(repSeq, sg.getSeqrep());
650       assertTrue(sg.getSequences().contains(repSeq));
651       assertTrue(sg.getSequences().contains(precedingSeq));
652       assertTrue(alignment.getGroups().isEmpty(), "alignment has groups");
653       Map<SequenceI, SequenceCollectionI> hiddenRepSeqsMap = av
654               .getHiddenRepSequences();
655       assertNotNull(hiddenRepSeqsMap);
656       assertEquals(1, hiddenRepSeqsMap.size());
657       assertSame(sg, hiddenRepSeqsMap.get(repSeq));
658       assertTrue(alignment.getHiddenSequences().isHidden(precedingSeq));
659       assertFalse(alignment.getHiddenSequences().isHidden(repSeq));
660       hiddenNames.add(precedingSeq.getName());
661
662       n++;
663     }
664     File tfile = File.createTempFile("testStoreAndRecoverGroupReps",
665             ".jvp");
666     try
667     {
668       new Jalview2XML(false).saveState(tfile);
669     } catch (Throwable e)
670     {
671       Assert.fail("Didn't save the expanded view state", e);
672     }
673     Desktop.instance.closeAll_actionPerformed(null);
674     if (Desktop.getAlignFrames() != null)
675     {
676       Assert.assertEquals(Desktop.getAlignFrames().length, 0);
677     }
678
679     af = new FileLoader().LoadFileWaitTillLoaded(tfile.getAbsolutePath(),
680             DataSourceType.FILE);
681     afid = af.getViewport().getSequenceSetId();
682
683     for (AlignmentViewPanel ap : Desktop.getAlignmentPanels(afid))
684     {
685       String viewName = ap.getViewName();
686       AlignViewportI av = ap.getAlignViewport();
687       AlignmentI alignment = ap.getAlignment();
688       List<SequenceGroup> groups = alignment.getGroups();
689       assertNotNull(groups);
690       assertTrue(groups.isEmpty(), "Alignment has groups");
691       Map<SequenceI, SequenceCollectionI> hiddenRepSeqsMap = av
692               .getHiddenRepSequences();
693       assertNotNull(hiddenRepSeqsMap, "No hidden represented sequences");
694       assertEquals(1, hiddenRepSeqsMap.size());
695       assertEquals(repSeqs.get(viewName).getDisplayId(true),
696               hiddenRepSeqsMap.keySet().iterator().next()
697                       .getDisplayId(true));
698
699       /*
700        * verify hidden sequences in restored panel
701        */
702       List<String> hidden = hiddenSeqNames.get(ap.getViewName());
703       HiddenSequences hs = alignment.getHiddenSequences();
704       assertEquals(hidden.size(), hs.getSize(),
705               "wrong number of restored hidden sequences in "
706                       + ap.getViewName());
707     }
708   }
709
710   /**
711    * Test save and reload of PDBEntry in Jalview project
712    * 
713    * @throws Exception
714    */
715   @Test(groups = { "Functional" })
716   public void testStoreAndRecoverPDBEntry() throws Exception
717   {
718     Desktop.instance.closeAll_actionPerformed(null);
719     String exampleFile = "examples/3W5V.pdb";
720     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(exampleFile,
721             DataSourceType.FILE);
722     assertNotNull(af, "Didn't read in the example file correctly.");
723     String afid = af.getViewport().getSequenceSetId();
724
725     AlignmentPanel[] alignPanels = Desktop.getAlignmentPanels(afid);
726     System.out.println();
727     AlignmentViewPanel ap = alignPanels[0];
728     String tfileBase = new File(".").getAbsolutePath().replace(".", "");
729     String testFile = tfileBase + exampleFile;
730     AlignmentI alignment = ap.getAlignment();
731     System.out.println("blah");
732     SequenceI[] seqs = alignment.getSequencesArray();
733     Assert.assertNotNull(seqs[0]);
734     Assert.assertNotNull(seqs[1]);
735     Assert.assertNotNull(seqs[2]);
736     Assert.assertNotNull(seqs[3]);
737     Assert.assertNotNull(seqs[0].getDatasetSequence());
738     Assert.assertNotNull(seqs[1].getDatasetSequence());
739     Assert.assertNotNull(seqs[2].getDatasetSequence());
740     Assert.assertNotNull(seqs[3].getDatasetSequence());
741     PDBEntry[] pdbEntries = new PDBEntry[4];
742     pdbEntries[0] = new PDBEntry("3W5V", "A", Type.PDB, testFile);
743     pdbEntries[1] = new PDBEntry("3W5V", "B", Type.PDB, testFile);
744     pdbEntries[2] = new PDBEntry("3W5V", "C", Type.PDB, testFile);
745     pdbEntries[3] = new PDBEntry("3W5V", "D", Type.PDB, testFile);
746     Assert.assertEquals(
747             seqs[0].getDatasetSequence().getAllPDBEntries().get(0),
748             pdbEntries[0]);
749     Assert.assertEquals(
750             seqs[1].getDatasetSequence().getAllPDBEntries().get(0),
751             pdbEntries[1]);
752     Assert.assertEquals(
753             seqs[2].getDatasetSequence().getAllPDBEntries().get(0),
754             pdbEntries[2]);
755     Assert.assertEquals(
756             seqs[3].getDatasetSequence().getAllPDBEntries().get(0),
757             pdbEntries[3]);
758
759     File tfile = File.createTempFile("testStoreAndRecoverPDBEntry", ".jvp");
760     try
761     {
762       new Jalview2XML(false).saveState(tfile);
763     } catch (Throwable e)
764     {
765       Assert.fail("Didn't save the state", e);
766     }
767     Desktop.instance.closeAll_actionPerformed(null);
768     if (Desktop.getAlignFrames() != null)
769     {
770       Assert.assertEquals(Desktop.getAlignFrames().length, 0);
771     }
772
773     AlignFrame restoredFrame = new FileLoader().LoadFileWaitTillLoaded(
774             tfile.getAbsolutePath(), DataSourceType.FILE);
775     String rfid = restoredFrame.getViewport().getSequenceSetId();
776     AlignmentPanel[] rAlignPanels = Desktop.getAlignmentPanels(rfid);
777     AlignmentViewPanel rap = rAlignPanels[0];
778     AlignmentI rAlignment = rap.getAlignment();
779     System.out.println("blah");
780     SequenceI[] rseqs = rAlignment.getSequencesArray();
781     Assert.assertNotNull(rseqs[0]);
782     Assert.assertNotNull(rseqs[1]);
783     Assert.assertNotNull(rseqs[2]);
784     Assert.assertNotNull(rseqs[3]);
785     Assert.assertNotNull(rseqs[0].getDatasetSequence());
786     Assert.assertNotNull(rseqs[1].getDatasetSequence());
787     Assert.assertNotNull(rseqs[2].getDatasetSequence());
788     Assert.assertNotNull(rseqs[3].getDatasetSequence());
789
790     // The Asserts below are expected to fail until the PDB chainCode is
791     // recoverable from a Jalview projects
792     for (int chain = 0; chain < 4; chain++)
793     {
794       PDBEntry recov = rseqs[chain].getDatasetSequence().getAllPDBEntries()
795               .get(0);
796       PDBEntry expected = pdbEntries[chain];
797       Assert.assertEquals(recov.getId(), expected.getId(),
798               "Mismatch PDB ID");
799       Assert.assertEquals(recov.getChainCode(), expected.getChainCode(),
800               "Mismatch PDB ID");
801       Assert.assertEquals(recov.getType(), expected.getType(),
802               "Mismatch PDBEntry 'Type'");
803       Assert.assertNotNull(recov.getFile(),
804               "Recovered PDBEntry should have a non-null file entry");
805     }
806   }
807
808   /**
809    * Configure an alignment and a sub-group each with distinct colour schemes,
810    * Conservation and PID thresholds, and confirm these are restored from the
811    * saved project.
812    * 
813    * @throws IOException
814    */
815   @Test(groups = { "Functional" })
816   public void testStoreAndRecoverColourThresholds() throws IOException
817   {
818     Desktop.instance.closeAll_actionPerformed(null);
819     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
820             "examples/uniref50.fa", DataSourceType.FILE);
821
822     AlignViewportI av = af.getViewport();
823     AlignmentI al = av.getAlignment();
824
825     /*
826      * Colour alignment by Buried Index, Above 10% PID, By Conservation 20%
827      */
828     av.setColourAppliesToAllGroups(false);
829     af.changeColour_actionPerformed(JalviewColourScheme.Buried.toString());
830     assertTrue(av.getGlobalColourScheme() instanceof BuriedColourScheme);
831     af.abovePIDThreshold_actionPerformed(true);
832     SliderPanel sp = SliderPanel.getSliderPanel();
833     assertFalse(sp.isForConservation());
834     sp.valueChanged(10);
835     af.conservationMenuItem_actionPerformed(true);
836     sp = SliderPanel.getSliderPanel();
837     assertTrue(sp.isForConservation());
838     sp.valueChanged(20);
839     ResidueShaderI rs = av.getResidueShading();
840     assertEquals(rs.getThreshold(), 10);
841     assertTrue(rs.conservationApplied());
842     assertEquals(rs.getConservationInc(), 20);
843
844     /*
845      * create a group with Strand colouring, 30% Conservation
846      * and 40% PID threshold
847      */
848     SequenceGroup sg = new SequenceGroup();
849     sg.addSequence(al.getSequenceAt(0), false);
850     sg.setStartRes(15);
851     sg.setEndRes(25);
852     av.setSelectionGroup(sg);
853     PopupMenu popupMenu = new PopupMenu(af.alignPanel, null, null);
854     popupMenu.changeColour_actionPerformed(
855             JalviewColourScheme.Strand.toString());
856     assertTrue(sg.getColourScheme() instanceof StrandColourScheme);
857     assertEquals(al.getGroups().size(), 1);
858     assertSame(al.getGroups().get(0), sg);
859     popupMenu.conservationMenuItem_actionPerformed(true);
860     sp = SliderPanel.getSliderPanel();
861     assertTrue(sp.isForConservation());
862     sp.valueChanged(30);
863     popupMenu.abovePIDColour_actionPerformed(true);
864     sp = SliderPanel.getSliderPanel();
865     assertFalse(sp.isForConservation());
866     sp.valueChanged(40);
867     assertTrue(sg.getGroupColourScheme().conservationApplied());
868     assertEquals(sg.getGroupColourScheme().getConservationInc(), 30);
869     assertEquals(sg.getGroupColourScheme().getThreshold(), 40);
870
871     /*
872      * save project, close windows, reload project, verify
873      */
874     File tfile = File.createTempFile("testStoreAndRecoverColourThresholds",
875             ".jvp");
876     tfile.deleteOnExit();
877     new Jalview2XML(false).saveState(tfile);
878     Desktop.instance.closeAll_actionPerformed(null);
879     af = new FileLoader().LoadFileWaitTillLoaded(tfile.getAbsolutePath(),
880             DataSourceType.FILE);
881     Assert.assertNotNull(af, "Failed to reload project");
882
883     /*
884      * verify alignment (background) colouring
885      */
886     rs = af.getViewport().getResidueShading();
887     assertTrue(rs.getColourScheme() instanceof BuriedColourScheme);
888     assertEquals(rs.getThreshold(), 10);
889     assertTrue(rs.conservationApplied());
890     assertEquals(rs.getConservationInc(), 20);
891
892     /*
893      * verify group colouring
894      */
895     assertEquals(1, af.getViewport().getAlignment().getGroups().size(), 1);
896     rs = af.getViewport().getAlignment().getGroups().get(0)
897             .getGroupColourScheme();
898     assertTrue(rs.getColourScheme() instanceof StrandColourScheme);
899     assertEquals(rs.getThreshold(), 40);
900     assertTrue(rs.conservationApplied());
901     assertEquals(rs.getConservationInc(), 30);
902   }
903
904   /**
905    * Test save and reload of feature colour schemes and filter settings
906    * 
907    * @throws IOException
908    */
909   @Test(groups = { "Functional" })
910   public void testSaveLoadFeatureColoursAndFilters() throws IOException
911   {
912     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
913             ">Seq1\nACDEFGHIKLM", DataSourceType.PASTE);
914     SequenceI seq1 = af.getViewport().getAlignment().getSequenceAt(0);
915
916     /*
917      * add some features to the sequence
918      */
919     int score = 1;
920     addFeatures(seq1, "type1", score++);
921     addFeatures(seq1, "type2", score++);
922     addFeatures(seq1, "type3", score++);
923     addFeatures(seq1, "type4", score++);
924     addFeatures(seq1, "type5", score++);
925
926     /*
927      * set colour schemes for features
928      */
929     FeatureRenderer fr = af.getFeatureRenderer();
930     fr.findAllFeatures(true);
931
932     // type1: red
933     fr.setColour("type1", new FeatureColour(Color.red));
934
935     // type2: by label
936     FeatureColourI byLabel = new FeatureColour();
937     byLabel.setColourByLabel(true);
938     fr.setColour("type2", byLabel);
939
940     // type3: by score above threshold
941     FeatureColourI byScore = new FeatureColour(null, Color.BLACK,
942             Color.BLUE, null, 1, 10);
943     byScore.setAboveThreshold(true);
944     byScore.setThreshold(2f);
945     fr.setColour("type3", byScore);
946
947     // type4: by attribute AF
948     FeatureColourI byAF = new FeatureColour();
949     byAF.setColourByLabel(true);
950     byAF.setAttributeName("AF");
951     fr.setColour("type4", byAF);
952
953     // type5: by attribute CSQ:PolyPhen below threshold
954     FeatureColourI byPolyPhen = new FeatureColour(null, Color.BLACK,
955             Color.BLUE, null, 1, 10);
956     byPolyPhen.setBelowThreshold(true);
957     byPolyPhen.setThreshold(3f);
958     byPolyPhen.setAttributeName("CSQ", "PolyPhen");
959     fr.setColour("type5", byPolyPhen);
960
961     /*
962      * set filters for feature types
963      */
964
965     // filter type1 features by (label contains "x")
966     FeatureMatcherSetI filterByX = new FeatureMatcherSet();
967     filterByX.and(FeatureMatcher.byLabel(Condition.Contains, "x"));
968     fr.setFeatureFilter("type1", filterByX);
969
970     // filter type2 features by (score <= 2.4 and score > 1.1)
971     FeatureMatcherSetI filterByScore = new FeatureMatcherSet();
972     filterByScore.and(FeatureMatcher.byScore(Condition.LE, "2.4"));
973     filterByScore.and(FeatureMatcher.byScore(Condition.GT, "1.1"));
974     fr.setFeatureFilter("type2", filterByScore);
975
976     // filter type3 features by (AF contains X OR CSQ:PolyPhen != 0)
977     FeatureMatcherSetI filterByXY = new FeatureMatcherSet();
978     filterByXY
979             .and(FeatureMatcher.byAttribute(Condition.Contains, "X", "AF"));
980     filterByXY.or(FeatureMatcher.byAttribute(Condition.NE, "0", "CSQ",
981             "PolyPhen"));
982     fr.setFeatureFilter("type3", filterByXY);
983
984     /*
985      * save as Jalview project
986      */
987     File tfile = File.createTempFile("JalviewTest", ".jvp");
988     tfile.deleteOnExit();
989     String filePath = tfile.getAbsolutePath();
990     assertTrue(af.saveAlignment(filePath, FileFormat.Jalview),
991             "Failed to store as a project.");
992
993     /*
994      * close current alignment and load the saved project
995      */
996     af.closeMenuItem_actionPerformed(true);
997     af = null;
998     af = new FileLoader().LoadFileWaitTillLoaded(filePath,
999             DataSourceType.FILE);
1000     assertNotNull(af, "Failed to import new project");
1001
1002     /*
1003      * verify restored feature colour schemes and filters
1004      */
1005     fr = af.getFeatureRenderer();
1006     FeatureColourI fc = fr.getFeatureStyle("type1");
1007     assertTrue(fc.isSimpleColour());
1008     assertEquals(fc.getColour(), Color.red);
1009     fc = fr.getFeatureStyle("type2");
1010     assertTrue(fc.isColourByLabel());
1011     fc = fr.getFeatureStyle("type3");
1012     assertTrue(fc.isGraduatedColour());
1013     assertNull(fc.getAttributeName());
1014     assertTrue(fc.isAboveThreshold());
1015     assertEquals(fc.getThreshold(), 2f);
1016     fc = fr.getFeatureStyle("type4");
1017     assertTrue(fc.isColourByLabel());
1018     assertTrue(fc.isColourByAttribute());
1019     assertEquals(fc.getAttributeName(), new String[] { "AF" });
1020     fc = fr.getFeatureStyle("type5");
1021     assertTrue(fc.isGraduatedColour());
1022     assertTrue(fc.isColourByAttribute());
1023     assertEquals(fc.getAttributeName(), new String[] { "CSQ", "PolyPhen" });
1024     assertTrue(fc.isBelowThreshold());
1025     assertEquals(fc.getThreshold(), 3f);
1026
1027     assertEquals(fr.getFeatureFilter("type1").toStableString(),
1028             "Label Contains x");
1029     assertEquals(fr.getFeatureFilter("type2").toStableString(),
1030             "(Score LE 2.4) AND (Score GT 1.1)");
1031     assertEquals(fr.getFeatureFilter("type3").toStableString(),
1032             "(AF Contains X) OR (CSQ:PolyPhen NE 0.0)");
1033   }
1034
1035   private void addFeature(SequenceI seq, String featureType, int score)
1036   {
1037     SequenceFeature sf = new SequenceFeature(featureType, "desc", 1, 2,
1038             score, "grp");
1039     sf.setValue("AF", score);
1040     sf.setValue("CSQ", new HashMap<String, String>()
1041     {
1042       {
1043         put("PolyPhen", Integer.toString(score));
1044       }
1045     });
1046     seq.addSequenceFeature(sf);
1047   }
1048
1049   /**
1050    * Adds two features of the given type to the given sequence, also setting the
1051    * score as the value of attribute "AF" and sub-attribute "CSQ:PolyPhen"
1052    * 
1053    * @param seq
1054    * @param featureType
1055    * @param score
1056    */
1057   private void addFeatures(SequenceI seq, String featureType, int score)
1058   {
1059     addFeature(seq, featureType, score++);
1060     addFeature(seq, featureType, score);
1061   }
1062
1063   /**
1064    * Load an HMM profile to an alignment, and confirm it is correctly restored
1065    * when reloaded from project
1066    * 
1067    * @throws IOException
1068    */
1069   @Test(groups = { "Functional" })
1070   public void testStoreAndRecoverHmmProfile() throws IOException
1071   {
1072     Desktop.instance.closeAll_actionPerformed(null);
1073     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
1074             "examples/uniref50.fa", DataSourceType.FILE);
1075   
1076     AlignViewportI av = af.getViewport();
1077     AlignmentI al = av.getAlignment();
1078
1079     /*
1080      * mimic drag and drop of hmm file on to alignment
1081      */
1082     AlignFrame af2 = new FileLoader().LoadFileWaitTillLoaded(
1083             "examples/uniref50.hmm", DataSourceType.FILE);
1084     al.insertSequenceAt(0,
1085             af2.getViewport().getAlignment().getSequenceAt(0));
1086
1087     /*
1088      * check it loaded in
1089      */
1090     SequenceI hmmSeq = al.getSequenceAt(0);
1091     assertTrue(hmmSeq.hasHMMProfile());
1092     HiddenMarkovModel hmm = hmmSeq.getHMM();
1093     assertSame(hmm.getConsensusSequence(), hmmSeq);
1094
1095     /*
1096      * save project, close windows, reload project, verify
1097      */
1098     File tfile = File.createTempFile("testStoreAndRecoverHmmProfile",
1099             ".jvp");
1100     tfile.deleteOnExit();
1101     new Jalview2XML(false).saveState(tfile);
1102     Desktop.instance.closeAll_actionPerformed(null);
1103     af = new FileLoader().LoadFileWaitTillLoaded(tfile.getAbsolutePath(),
1104             DataSourceType.FILE);
1105     Assert.assertNotNull(af, "Failed to reload project");
1106
1107     hmmSeq = al.getSequenceAt(0);
1108     assertTrue(hmmSeq.hasHMMProfile());
1109     assertSame(hmm.getConsensusSequence(), hmmSeq);
1110     Mapping mapToHmmConsensus = (Mapping) PA.getValue(hmm,
1111             "mapToHmmConsensus");
1112     assertNotNull(mapToHmmConsensus);
1113     assertSame(mapToHmmConsensus.getTo(), hmmSeq.getDatasetSequence());
1114   }
1115
1116   /**
1117    * pre 2.11 - jalview 2.10 erroneously created new dataset entries for each
1118    * view (JAL-3171) this test ensures we can import and merge those views
1119    */
1120   @Test(groups = { "Functional" })
1121   public void testMergeDatasetsforViews() throws IOException
1122   {
1123     // simple project - two views on one alignment
1124     AlignFrame af = new FileLoader(false).LoadFileWaitTillLoaded(
1125             "examples/testdata/projects/twoViews.jvp", DataSourceType.FILE);
1126     assertNotNull(af);
1127     assertTrue(af.getAlignPanels().size() > 1);
1128     verifyDs(af);
1129   }
1130
1131   /**
1132    * pre 2.11 - jalview 2.10 erroneously created new dataset entries for each
1133    * view (JAL-3171) this test ensures we can import and merge those views This
1134    * is a more complex project
1135    */
1136   @Test(groups = { "Functional" })
1137   public void testMergeDatasetsforManyViews() throws IOException
1138   {
1139     Desktop.instance.closeAll_actionPerformed(null);
1140
1141     // complex project - one dataset, several views on several alignments
1142     AlignFrame af = new FileLoader(false).LoadFileWaitTillLoaded(
1143             "examples/testdata/projects/manyViews.jvp",
1144             DataSourceType.FILE);
1145     assertNotNull(af);
1146
1147     AlignmentI ds = null;
1148     for (AlignFrame alignFrame : Desktop.getAlignFrames())
1149     {
1150       if (ds == null)
1151       {
1152         ds = verifyDs(alignFrame);
1153       }
1154       else
1155       {
1156         // check that this frame's dataset matches the last
1157         assertTrue(ds == verifyDs(alignFrame));
1158       }
1159     }
1160   }
1161
1162   private AlignmentI verifyDs(AlignFrame af)
1163   {
1164     AlignmentI ds = null;
1165     for (AlignmentViewPanel ap : af.getAlignPanels())
1166     {
1167       if (ds == null)
1168       {
1169         ds = ap.getAlignment().getDataset();
1170       }
1171       else
1172       {
1173         assertTrue(ap.getAlignment().getDataset() == ds,
1174                 "Dataset was not the same for imported 2.10.5 project with several alignment views");
1175       }
1176     }
1177     return ds;
1178   }
1179
1180   @Test(groups = "Functional")
1181   public void testPcaViewAssociation() throws IOException
1182   {
1183     Desktop.instance.closeAll_actionPerformed(null);
1184     final String PCAVIEWNAME = "With PCA";
1185     // create a new tempfile
1186     File tempfile = File.createTempFile("jvPCAviewAssoc", "jvp");
1187
1188     {
1189       String exampleFile = "examples/uniref50.fa";
1190       AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(exampleFile,
1191               DataSourceType.FILE);
1192       assertNotNull(af, "Didn't read in the example file correctly.");
1193       AlignmentPanel origView = (AlignmentPanel) af.getAlignPanels().get(0);
1194       AlignmentPanel newview = af.newView(PCAVIEWNAME, true);
1195       // create another for good measure
1196       af.newView("Not the PCA View", true);
1197       PCAPanel pcaPanel = new PCAPanel(origView, "BLOSUM62",
1198               new SimilarityParams(true, true, true, false));
1199       // we're in the test exec thread, so we can just run synchronously here
1200       pcaPanel.run();
1201
1202       // now switch the linked view
1203       pcaPanel.selectAssociatedView(newview);
1204
1205       assertTrue(pcaPanel.getAlignViewport() == newview.getAlignViewport(),
1206               "PCA should be associated with 'With PCA' view: test is broken");
1207
1208       // now save and reload project
1209       Jalview2XML jv2xml = new jalview.project.Jalview2XML(false);
1210       tempfile.delete();
1211       jv2xml.saveState(tempfile);
1212       assertTrue(jv2xml.errorMessage == null,
1213               "Failed to save dummy project with PCA: test broken");
1214     }
1215
1216     // load again.
1217     Desktop.instance.closeAll_actionPerformed(null);
1218     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(
1219             tempfile.getCanonicalPath(), DataSourceType.FILE);
1220     JInternalFrame[] frames = Desktop.instance.getAllFrames();
1221     // PCA and the tabbed alignment view should be the only two windows on the
1222     // desktop
1223     assertEquals(frames.length, 2,
1224             "PCA and the tabbed alignment view should be the only two windows on the desktop");
1225     PCAPanel pcaPanel = (PCAPanel) frames[frames[0] == af ? 1 : 0];
1226
1227     AlignmentViewPanel restoredNewView = null;
1228     for (AlignmentViewPanel alignpanel : Desktop.getAlignmentPanels(null))
1229     {
1230       if (alignpanel.getAlignViewport() == pcaPanel.getAlignViewport())
1231       {
1232         restoredNewView = alignpanel;
1233       }
1234     }
1235     assertEquals(restoredNewView.getViewName(), PCAVIEWNAME);
1236     assertTrue(
1237             restoredNewView.getAlignViewport() == pcaPanel
1238                     .getAlignViewport(),
1239             "Didn't restore correct view association for the PCA view");
1240   }
1241
1242   /**
1243    * Test save and reload of DBRefEntry including GeneLocus in project
1244    * 
1245    * @throws Exception
1246    */
1247   @Test(groups = { "Functional" })
1248   public void testStoreAndRecoverGeneLocus() throws Exception
1249   {
1250     Desktop.instance.closeAll_actionPerformed(null);
1251     String seqData = ">P30419\nACDE\n>X1235\nGCCTGTGACGAA";
1252     AlignFrame af = new FileLoader().LoadFileWaitTillLoaded(seqData,
1253             DataSourceType.PASTE);
1254     assertNotNull(af, "Didn't read in the example file correctly.");
1255   
1256     AlignmentViewPanel ap = Desktop.getAlignmentPanels(null)[0];
1257     SequenceI pep = ap.getAlignment().getSequenceAt(0);
1258     SequenceI cds = ap.getAlignment().getSequenceAt(1);
1259
1260     /*
1261      * give 'protein' a dbref to self, a dbref with map to CDS,
1262      * and a dbref with map to gene 'locus'
1263      */
1264     DBRefEntry dbref1 = new DBRefEntry("Uniprot", "1", "P30419", null);
1265     pep.addDBRef(dbref1);
1266     Mapping cdsmap = new Mapping(cds,
1267             new MapList(new int[]
1268             { 1, 4 }, new int[] { 1, 12 }, 1, 3));
1269     DBRefEntry dbref2 = new DBRefEntry("EMBLCDS", "2", "X1235", cdsmap);
1270     pep.addDBRef(dbref2);
1271     Mapping locusmap = new Mapping(null,
1272             new MapList(new int[]
1273             { 1, 4 }, new int[] { 2674123, 2674135 }, 1, 3));
1274     DBRefEntry dbref3 = new GeneLocus("human", "GRCh38", "5", locusmap);
1275     pep.addDBRef(dbref3);
1276
1277     File tfile = File.createTempFile("testStoreAndRecoverGeneLocus",
1278             ".jvp");
1279     try
1280     {
1281       new Jalview2XML(false).saveState(tfile);
1282     } catch (Throwable e)
1283     {
1284       Assert.fail("Didn't save the state", e);
1285     }
1286     Desktop.instance.closeAll_actionPerformed(null);
1287   
1288     new FileLoader().LoadFileWaitTillLoaded(tfile.getAbsolutePath(),
1289             DataSourceType.FILE);
1290     AlignmentViewPanel rap = Desktop.getAlignmentPanels(null)[0];
1291     SequenceI rpep = rap.getAlignment().getSequenceAt(0);
1292     assertEquals(rpep.getName(), "P30419");
1293     DBRefEntry[] dbrefs = rpep.getDBRefs();
1294     assertEquals(dbrefs.length, 3);
1295     DBRefEntry dbRef = dbrefs[0];
1296     assertFalse(dbRef instanceof GeneLocus);
1297     assertNull(dbRef.getMap());
1298     assertEquals(dbRef, dbref1);
1299
1300     /*
1301      * restored dbrefs with mapping have a different 'map to'
1302      * sequence but otherwise match the original dbrefs
1303      */
1304     dbRef = dbrefs[1];
1305     assertFalse(dbRef instanceof GeneLocus);
1306     assertTrue(dbRef.equalRef(dbref2));
1307     assertNotNull(dbRef.getMap());
1308     SequenceI rcds = rap.getAlignment().getSequenceAt(1);
1309     assertSame(dbRef.getMap().getTo(), rcds);
1310     // compare MapList but not map.to
1311     assertEquals(dbRef.getMap().getMap(), dbref2.getMap().getMap());
1312
1313     /*
1314      * GeneLocus map.to is null so can compare Mapping objects
1315      */
1316     dbRef = dbrefs[2];
1317     assertTrue(dbRef instanceof GeneLocus);
1318     assertEquals(dbRef, dbref3);
1319   }
1320 }