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.datamodel.AlignmentAnnotation;
27 import jalview.datamodel.AlignmentI;
28 import jalview.gui.Jalview2XML;
29 import jalview.io.AnnotationFile;
30 import jalview.io.FormatAdapter;
31 import jalview.io.StockholmFileTest;
32 import jalview.ws.jws2.Jws2Discoverer;
33 import jalview.ws.jws2.RNAalifoldClient;
34 import jalview.ws.jws2.SequenceAnnotationWSClient;
35 import jalview.ws.jws2.jabaws2.Jws2Instance;
36 import jalview.ws.params.AutoCalcSetting;
38 import java.awt.Component;
39 import java.util.ArrayList;
40 import java.util.List;
42 import javax.swing.JMenu;
43 import javax.swing.JMenuItem;
45 import org.testng.Assert;
46 import org.testng.annotations.AfterClass;
47 import org.testng.annotations.BeforeClass;
48 import org.testng.annotations.Test;
50 import compbio.metadata.WrongParameterException;
52 public class RNAStructExportImport
54 public static String testseqs = "examples/RF00031_folded.stk";
56 public static Jws2Discoverer disc;
58 public static Jws2Instance rnaalifoldws;
60 jalview.ws.jws2.RNAalifoldClient alifoldClient;
62 public static jalview.gui.AlignFrame af = null;
64 @BeforeClass(alwaysRun = true)
65 public static void setUpBeforeClass() throws Exception
68 jalview.bin.Cache.initLogger();
69 disc = JalviewJabawsTestUtils.getJabawsDiscoverer(false);
71 for (Jws2Instance svc : disc.getServices())
74 if (svc.getServiceTypeURI().toLowerCase().contains("rnaalifoldws"))
80 System.out.println("State of rnaalifoldws: " + rnaalifoldws);
82 if (rnaalifoldws == null)
84 Assert.fail("no web service");
87 jalview.io.FileLoader fl = new jalview.io.FileLoader(false);
89 af = fl.LoadFileWaitTillLoaded(testseqs, jalview.io.FormatAdapter.FILE);
91 assertNotNull("Couldn't load test data ('" + testseqs + "')", af);
93 // remove any existing annotation
94 List<AlignmentAnnotation> aal = new ArrayList<AlignmentAnnotation>();
95 for (AlignmentAnnotation rna : af.getViewport().getAlignment()
96 .getAlignmentAnnotation())
103 for (AlignmentAnnotation rna : aal)
105 af.getViewport().getAlignment().deleteAnnotation(rna);
107 af.getViewport().alignmentChanged(af.alignPanel); // why is af.alignPanel
112 public static void tearDownAfterClass() throws Exception
116 af.setVisible(false);
121 @Test(groups = { "Functional" })
122 public void testRNAAliFoldValidStructure()
125 alifoldClient = new RNAalifoldClient(rnaalifoldws, af, null, null);
127 af.getViewport().getCalcManager().startWorker(alifoldClient);
134 } catch (InterruptedException x)
138 } while (af.getViewport().getCalcManager().isWorking());
140 AlignmentI orig_alig = af.getViewport().getAlignment();
141 for (AlignmentAnnotation aa : orig_alig.getAlignmentAnnotation())
143 if (alifoldClient.involves(aa))
148 "Did not create valid structure from RNAALiFold prediction",
155 @Test(groups = { "Functional" })
156 public void testRNAStructExport()
159 alifoldClient = new RNAalifoldClient(rnaalifoldws, af, null, null);
161 af.getViewport().getCalcManager().startWorker(alifoldClient);
168 } catch (InterruptedException x)
172 } while (af.getViewport().getCalcManager().isWorking());
174 AlignmentI orig_alig = af.getViewport().getAlignment();
176 testAnnotationFileIO("Testing RNAalifold Annotation IO", orig_alig);
180 public static void testAnnotationFileIO(String testname, AlignmentI al)
184 // what format would be appropriate for RNAalifold annotations?
185 String aligfileout = new FormatAdapter().formatSequences("PFAM",
186 al.getSequencesArray());
188 String anfileout = new AnnotationFile()
189 .printAnnotationsForAlignment(al);
193 + "\nAlignment annotation file was not regenerated. Null string",
198 + "\nAlignment annotation file was not regenerated. Empty string",
199 anfileout.length() > "JALVIEW_ANNOTATION".length());
201 System.out.println("Output annotation file:\n" + anfileout
204 // again what format would be appropriate?
205 AlignmentI al_new = new FormatAdapter().readFile(aligfileout,
206 FormatAdapter.PASTE, "PFAM");
210 + "\nregenerated annotation file did not annotate alignment.",
211 new AnnotationFile().readAnnotationFile(al_new, anfileout,
212 FormatAdapter.PASTE));
214 // test for consistency in io
215 StockholmFileTest.testAlignmentEquivalence(al, al_new, false);
217 } catch (Exception e)
223 + "\nCouldn't complete Annotation file roundtrip input/output/input test.");
226 @Test(groups = { "Functional" })
227 public void testRnaalifoldSettingsRecovery()
229 List<compbio.metadata.Argument> opts = new ArrayList<compbio.metadata.Argument>();
230 for (compbio.metadata.Argument rg : (List<compbio.metadata.Argument>) rnaalifoldws
231 .getRunnerConfig().getArguments())
233 if (rg.getDescription().contains("emperature"))
238 } catch (WrongParameterException q)
240 Assert.fail("Couldn't set the temperature parameter "
241 + q.getStackTrace());
245 if (rg.getDescription().contains("max"))
250 alifoldClient = new RNAalifoldClient(rnaalifoldws, af, null, opts);
252 af.getViewport().getCalcManager().startWorker(alifoldClient);
259 } catch (InterruptedException x)
263 } while (af.getViewport().getCalcManager().isWorking());
264 AutoCalcSetting oldacs = af.getViewport().getCalcIdSettingsFor(
265 alifoldClient.getCalcId());
266 String oldsettings = oldacs.getWsParamFile();
267 // write out parameters
268 jalview.gui.AlignFrame nalf = null;
269 assertTrue("Couldn't write out the Jar file",
270 new Jalview2XML(false).saveAlignment(af,
271 "testRnalifold_param.jar", "trial parameter writeout"));
272 assertTrue("Couldn't read back the Jar file", (nalf = new Jalview2XML(
273 false).loadJalviewAlign("testRnalifold_param.jar")) != null);
276 AutoCalcSetting acs = af.getViewport().getCalcIdSettingsFor(
277 alifoldClient.getCalcId());
278 assertTrue("Calc ID settings not recovered from viewport stash",
281 "Serialised Calc ID settings not identical to those recovered from viewport stash",
282 acs.getWsParamFile().equals(oldsettings));
283 JMenu nmenu = new JMenu();
284 new SequenceAnnotationWSClient().attachWSMenuEntry(nmenu,
286 assertTrue("Couldn't get menu entry for service",
287 nmenu.getItemCount() > 0);
288 for (Component itm : nmenu.getMenuComponents())
290 if (itm instanceof JMenuItem)
292 JMenuItem i = (JMenuItem) itm;
293 if (i.getText().equals(
294 rnaalifoldws.getAlignAnalysisUI().getAAconToggle()))
301 while (af.getViewport().isCalcInProgress())
306 } catch (Exception x)
311 AutoCalcSetting acs2 = af.getViewport().getCalcIdSettingsFor(
312 alifoldClient.getCalcId());
314 "Calc ID settings after recalculation has not been recovered.",
315 acs2.getWsParamFile().equals(oldsettings));