2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
21 package jalview.ws.jabaws;
23 import static org.testng.AssertJUnit.assertNotNull;
24 import static org.testng.AssertJUnit.assertTrue;
26 import jalview.bin.Cache;
27 import jalview.datamodel.AlignmentAnnotation;
28 import jalview.datamodel.AlignmentI;
29 import jalview.gui.JvOptionPane;
30 import jalview.io.AnnotationFile;
31 import jalview.io.DataSourceType;
32 import jalview.io.FileFormat;
33 import jalview.io.FormatAdapter;
34 import jalview.io.StockholmFileTest;
35 import jalview.ws.jws2.AADisorderClient;
36 import jalview.ws.jws2.Jws2Discoverer;
37 import jalview.ws.jws2.jabaws2.Jws2Instance;
39 import java.util.ArrayList;
40 import java.util.List;
42 import org.testng.Assert;
43 import org.testng.annotations.AfterClass;
44 import org.testng.annotations.BeforeClass;
45 import org.testng.annotations.Test;
47 @Test(groups = { "External" })
48 public class DisorderAnnotExportImport
51 @BeforeClass(alwaysRun = true)
52 public void setUpJvOptionPane()
54 JvOptionPane.setInteractiveMode(false);
55 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
58 public static String testseqs = "examples/uniref50.fa";
60 public static Jws2Discoverer disc;
62 public static List<Jws2Instance> iupreds;
64 jalview.ws.jws2.AADisorderClient disorderClient;
66 public static jalview.gui.AlignFrame af = null;
68 @BeforeClass(inheritGroups = true)
69 public static void setUpBeforeClass() throws Exception
71 Cache.loadProperties("test/jalview/io/testProps.jvprops");
73 disc = JalviewJabawsTestUtils.getJabawsDiscoverer();
74 iupreds = new ArrayList<Jws2Instance>();
75 for (Jws2Instance svc : disc.getServices())
77 if (svc.getServiceTypeURI().toLowerCase().contains("iupredws"))
82 assertTrue("Couldn't discover any IUPred services to use to test.",
84 jalview.io.FileLoader fl = new jalview.io.FileLoader(false);
85 af = fl.LoadFileWaitTillLoaded(testseqs, jalview.io.DataSourceType.FILE);
86 assertNotNull("Couldn't load test data ('" + testseqs + "')", af);
89 @AfterClass(alwaysRun = true)
90 public static void tearDownAfterClass() throws Exception
101 * test for patches to JAL-1294
104 public void testDisorderAnnotExport()
106 disorderClient = new AADisorderClient(iupreds.get(0), af, null, null);
107 af.getViewport().getCalcManager().startWorker(disorderClient);
113 } catch (InterruptedException x)
117 } while (af.getViewport().getCalcManager().isWorking());
118 AlignmentI orig_alig = af.getViewport().getAlignment();
119 // NOTE: Consensus annotation row cannot be exported and reimported
120 // faithfully - so we remove them
121 List<AlignmentAnnotation> toremove = new ArrayList<AlignmentAnnotation>();
122 for (AlignmentAnnotation aa : orig_alig.getAlignmentAnnotation())
124 if (aa.autoCalculated)
129 for (AlignmentAnnotation aa : toremove)
131 orig_alig.deleteAnnotation(aa);
133 checkAnnotationFileIO("Testing IUPred Annotation IO", orig_alig);
137 static void checkAnnotationFileIO(String testname, AlignmentI al)
141 String aligfileout = FileFormat.Pfam.getWriter(al).print(
142 al.getSequencesArray(), true);
143 String anfileout = new AnnotationFile()
144 .printAnnotationsForAlignment(al);
148 + "\nAlignment annotation file was not regenerated. Null string",
153 + "\nAlignment annotation file was not regenerated. Empty string",
154 anfileout.length() > "JALVIEW_ANNOTATION".length());
156 System.out.println("Output annotation file:\n" + anfileout
159 AlignmentI al_new = new FormatAdapter().readFile(aligfileout,
160 DataSourceType.PASTE, FileFormat.Pfam);
164 + "\nregenerated annotation file did not annotate alignment.",
165 new AnnotationFile().readAnnotationFile(al_new, anfileout,
166 DataSourceType.PASTE));
168 // test for consistency in io
169 StockholmFileTest.testAlignmentEquivalence(al, al_new, true);
171 } catch (Exception e)
177 + "\nCouldn't complete Annotation file roundtrip input/output/input test.");