4302df203a6e0e231ae142db3c9a5eb28f7147cf
[jalview.git] / src / jalview / ws / JPredClient.java
1 /*\r
2  * Jalview - A Sequence Alignment Editor and Viewer\r
3  * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
4  *\r
5  * This program is free software; you can redistribute it and/or\r
6  * modify it under the terms of the GNU General Public License\r
7  * as published by the Free Software Foundation; either version 2\r
8  * of the License, or (at your option) any later version.\r
9  *\r
10  * This program is distributed in the hope that it will be useful,\r
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13  * GNU General Public License for more details.\r
14  *\r
15  * You should have received a copy of the GNU General Public License\r
16  * along with this program; if not, write to the Free Software\r
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
18  */\r
19 package jalview.ws;\r
20 \r
21 import java.util.*;\r
22 \r
23 import javax.swing.*;\r
24 \r
25 import ext.vamsas.*;\r
26 import jalview.analysis.*;\r
27 import jalview.datamodel.*;\r
28 import jalview.gui.*;\r
29 \r
30 public class JPredClient\r
31     extends WSClient\r
32 {\r
33   ext.vamsas.Jpred server;\r
34   String altitle = "";\r
35   java.util.Hashtable SequenceInfo = null;\r
36   public JPredClient(ext.vamsas.ServiceHandle sh, String title, SequenceI seq) {\r
37     wsInfo = setWebService(sh);\r
38     startJPredClient(title, seq);\r
39   }\r
40   public JPredClient(ext.vamsas.ServiceHandle sh, String title, SequenceI[] msa) {\r
41     wsInfo = setWebService(sh);\r
42     startJPredClient(title, msa);\r
43   }\r
44 \r
45   public JPredClient(String title, SequenceI[] msf) {\r
46     startJPredClient(title, msf);\r
47   }\r
48 \r
49   public JPredClient(String title, SequenceI seq) {\r
50     startJPredClient(title, seq);\r
51   }\r
52 \r
53   private void startJPredClient(String title, SequenceI[] msf)\r
54   {\r
55     if (wsInfo==null)\r
56       wsInfo = setWebService();\r
57 \r
58     SequenceI seq = msf[0];\r
59     altitle = "JNet prediction on " + seq.getName() +\r
60         " using alignment from " + title;\r
61 \r
62     wsInfo.setProgressText("Job details for MSA based prediction (" +\r
63                            title + ") on sequence :\n>" + seq.getName() + "\n" +\r
64                            AlignSeq.extractGaps("-. ", seq.getSequence()) +\r
65                            "\n");\r
66     SequenceI aln[] = new SequenceI[msf.length];\r
67     for (int i=0,j=msf.length; i<j;i++)\r
68       aln[i] = new jalview.datamodel.Sequence(msf[i]);\r
69     SequenceInfo = jalview.analysis.SeqsetUtils.uniquify(aln, true);\r
70 \r
71     if (!locateWebService())\r
72     {\r
73       return;\r
74     }\r
75 \r
76     JPredThread jthread = new JPredThread(aln);\r
77     jthread.start();\r
78   }\r
79 \r
80   public void startJPredClient(String title, SequenceI seq)\r
81   {\r
82     if (wsInfo==null)\r
83       wsInfo = setWebService();\r
84     wsInfo.setProgressText("Job details for prediction on sequence :\n>" +\r
85                            seq.getName() + "\n" +\r
86                            AlignSeq.extractGaps("-. ", seq.getSequence()) +\r
87                            "\n");\r
88     altitle = "JNet prediction for sequence " + seq.getName() + " from " +\r
89         title;\r
90 \r
91     SequenceInfo = jalview.analysis.SeqsetUtils.SeqCharacterHash(seq);\r
92 \r
93     if (!locateWebService())\r
94     {\r
95       return;\r
96     }\r
97 \r
98     JPredThread jthread = new JPredThread(seq);\r
99     jthread.start();\r
100   }\r
101 \r
102   private WebserviceInfo setWebService()\r
103   {\r
104     WebServiceName = "JNetWS";\r
105     WebServiceJobTitle = "JNet secondary structure prediction";\r
106     WebServiceReference =\r
107         "\"Cuff J. A and Barton G.J (1999) Application of enhanced " +\r
108         "multiple sequence alignment profiles to improve protein secondary structure prediction, " +\r
109         "Proteins 40:502-511\".";\r
110     WsURL = "http://www.compbio.dundee.ac.uk/JalviewWS/services/jpred";\r
111 \r
112     WebserviceInfo wsInfo = new WebserviceInfo(WebServiceJobTitle,\r
113                                                WebServiceReference);\r
114 \r
115     return wsInfo;\r
116   }\r
117 \r
118   private boolean locateWebService()\r
119   {\r
120     ext.vamsas.JpredServiceLocator loc = new JpredServiceLocator(); // Default\r
121 \r
122     try\r
123     {\r
124       this.server = loc.getjpred(new java.net.URL(WsURL)); // JBPNote will be set from properties\r
125       ( (JpredSoapBindingStub)this.server).setTimeout(60000); // one minute stub\r
126     }\r
127     catch (Exception ex)\r
128     {\r
129       JOptionPane.showMessageDialog(Desktop.desktop,\r
130                                     "The Secondary Structure Prediction Service named " +\r
131                                     WebServiceName + " at " + WsURL +\r
132                                     " couldn't be located.",\r
133                                     "Internal Jalview Error",\r
134                                     JOptionPane.WARNING_MESSAGE);\r
135       wsInfo.setProgressText("Serious! " + WebServiceName +\r
136                              " Service location failed\nfor URL :" + WsURL +\r
137                              "\n" +\r
138                              ex.getMessage());\r
139       wsInfo.setStatus(wsInfo.STATE_STOPPED_SERVERERROR);\r
140 \r
141       return false;\r
142     }\r
143 \r
144     return true;\r
145   }\r
146 \r
147   class JPredThread\r
148       extends Thread\r
149   {\r
150     String OutputHeader;\r
151     vamsas.objects.simple.JpredResult result;\r
152     vamsas.objects.simple.Sequence sequence;\r
153     vamsas.objects.simple.Msfalignment msa;\r
154     String jobId;\r
155     boolean jobComplete = false;\r
156     int allowedServerExceptions = 3; // thread dies if too many exceptions.\r
157 \r
158     JPredThread(SequenceI seq)\r
159     {\r
160       OutputHeader = wsInfo.getProgressText();\r
161       this.sequence = new vamsas.objects.simple.Sequence();\r
162       this.sequence.setId(seq.getName());\r
163       this.sequence.setSeq(AlignSeq.extractGaps("-. ", seq.getSequence()));\r
164     }\r
165 \r
166     JPredThread(SequenceI[] msf)\r
167     {\r
168       OutputHeader = wsInfo.getProgressText();\r
169       this.sequence = new vamsas.objects.simple.Sequence();\r
170       this.sequence.setId(msf[0].getName());\r
171       this.sequence.setSeq(AlignSeq.extractGaps("-. ",\r
172                                                 msf[0].getSequence()));\r
173 \r
174       jalview.io.PileUpfile mwrite = new jalview.io.PileUpfile();\r
175       this.msa = new vamsas.objects.simple.Msfalignment();\r
176       msa.setMsf(mwrite.print(msf));\r
177     }\r
178 \r
179     public void run()\r
180     {\r
181       StartJob();\r
182 \r
183       while (!jobComplete && (allowedServerExceptions > 0))\r
184       {\r
185         try\r
186         {\r
187           if ( (result = server.getresult(jobId)) == null)\r
188           {\r
189             throw (new Exception(\r
190                 "Timed out when communicating with server\nTry again later.\n"));\r
191           }\r
192           if (result.getState()==0)\r
193             jalview.bin.Jalview.log.debug("Finished "+jobId);\r
194           if (result.isRunning())\r
195           {\r
196             wsInfo.setStatus(WebserviceInfo.STATE_RUNNING);\r
197           }\r
198           if (result.isQueued())\r
199           {\r
200             wsInfo.setStatus(WebserviceInfo.STATE_QUEUING);\r
201           }\r
202 \r
203           wsInfo.setProgressText(OutputHeader + "\n" +\r
204                                  result.getStatus());\r
205 \r
206           if (result.isFinished())\r
207           {\r
208 \r
209             parseResult();\r
210             jobComplete = true;\r
211             jobsRunning--;\r
212           } else {\r
213             // catch exceptions\r
214             if (! (result.isJobFailed() || result.isServerError()))\r
215             {\r
216               try\r
217               {\r
218                 Thread.sleep(5000);\r
219               }\r
220               catch (InterruptedException ex1)\r
221               {\r
222               }\r
223 \r
224               //  System.out.println("I'm alive "+seqid+" "+jobid);\r
225             }\r
226             else\r
227             {\r
228               wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_ERROR);\r
229               jobsRunning--;\r
230               jobComplete = true;\r
231             }\r
232           }\r
233         }\r
234         catch (Exception ex)\r
235         {\r
236           allowedServerExceptions--;\r
237           wsInfo.appendProgressText("\nJPredWS Server exception!\n" +\r
238                                     ex.getMessage());\r
239 \r
240           try\r
241           {\r
242             if (allowedServerExceptions > 0)\r
243             {\r
244               Thread.sleep(5000);\r
245             }\r
246           }\r
247           catch (InterruptedException ex1)\r
248           {\r
249           }\r
250         }\r
251       }\r
252       if (result!=null)\r
253         if (! (result.isJobFailed() || result.isServerError()))\r
254         {\r
255           wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_OK);\r
256         }\r
257         else\r
258         {\r
259           wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_ERROR);\r
260         }\r
261     }\r
262 \r
263     void StartJob()\r
264     {\r
265       try\r
266       {\r
267         if (msa != null)\r
268         {\r
269           jobId = server.predictOnMsa(msa);\r
270         }\r
271         else\r
272         {\r
273           jobId = server.predict(sequence);\r
274         }\r
275 \r
276         if (jobId != null)\r
277         {\r
278           if (jobId.startsWith("Broken"))\r
279           {\r
280             throw new Exception("Submission " + jobId);\r
281           }\r
282           else\r
283           {\r
284             System.out.println(WsURL + " Job Id '" + jobId + "'");\r
285           }\r
286         }\r
287         else\r
288         {\r
289           throw new Exception("Server timed out - try again later\n");\r
290         }\r
291       }\r
292       catch (Exception e)\r
293       {\r
294         wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_SERVERERROR);\r
295         allowedServerExceptions = -1;\r
296         jobComplete = true;\r
297 \r
298         wsInfo.setProgressText("Failed to submit the prediction. (Just close the window)\n"\r
299                                   + ((e.getMessage().indexOf("Exception")>-1) ? (\r
300                                   "It is most likely that there is a problem with the server.\n")\r
301                               : e.getMessage())\r
302                                   +wsInfo.getProgressText());\r
303         System.err.println(\r
304             "JPredWS Client: Failed to submit the prediction (Possibly a server error - see below)\n" +\r
305             e.getMessage() + "\n");\r
306 \r
307         jalview.bin.Jalview.log.debug("Failed Submission",e);\r
308       }\r
309     }\r
310 \r
311 \r
312 \r
313     private void addFloatAnnotations(Alignment al, int[] gapmap,\r
314                                      Vector values, String Symname,\r
315                                      String Visname, float min,\r
316                                      float max, int winLength)\r
317     {\r
318       Annotation[] annotations = new Annotation[al.getWidth()];\r
319 \r
320       for (int j = 0; j < values.size(); j++)\r
321       {\r
322         float value = Float.parseFloat(values.get(j).toString());\r
323         annotations[gapmap[j]] = new Annotation("", value + "", ' ',\r
324                                                 value);\r
325       }\r
326 \r
327       al.addAnnotation(new AlignmentAnnotation(Symname, Visname,\r
328                                                annotations, min, max, winLength));\r
329     }\r
330 \r
331     void parseResult()\r
332     {\r
333       // OutputHeader = output.getText();\r
334       if (result.isFailed())\r
335       {\r
336         OutputHeader += "Job failed.\n";\r
337       }\r
338 \r
339       if (result.getStatus() != null)\r
340       {\r
341         OutputHeader += ("\n" + result.getStatus());\r
342       }\r
343 \r
344       if (result.getPredfile() != null)\r
345       {\r
346         OutputHeader += ("\n" + result.getPredfile());\r
347 \r
348         // JBPNote The returned files from a webservice could be hidden behind icons in the monitor window that, when clicked, pop up their corresponding data\r
349       }\r
350 \r
351       if (result.getAligfile() != null)\r
352       {\r
353         OutputHeader += ("\n" + result.getAligfile());\r
354       }\r
355 \r
356       wsInfo.setProgressText(OutputHeader+"Parsing...");\r
357 \r
358       try\r
359       {\r
360         jalview.bin.Jalview.log.debug("Parsing output from JNet job.");\r
361         // JPredFile prediction = new JPredFile("C:/JalviewX/files/jpred.txt", "File");\r
362         jalview.io.JPredFile prediction = new jalview.io.JPredFile(result.\r
363             getPredfile(),\r
364             "Paste");\r
365         SequenceI[] preds = prediction.getSeqsAsArray();\r
366         jalview.bin.Jalview.log.debug("Got prediction profile.");\r
367         Alignment al;\r
368         int FirstSeq; // the position of the query sequence in Alignment al\r
369         boolean noMsa = true; // set if no MSA has been returned by JPred\r
370 \r
371         if ( (this.msa != null) && (result.getAligfile() != null))\r
372         {\r
373           jalview.bin.Jalview.log.debug("Getting associated alignment.");\r
374           // we ignore the returned alignment if we only predicted on a single sequence\r
375           String format = jalview.io.IdentifyFile.Identify(result.getAligfile(),\r
376               "Paste");\r
377 \r
378           if (jalview.io.FormatAdapter.formats.contains(format))\r
379           {\r
380             al = new Alignment(jalview.io.FormatAdapter.readFile(\r
381                 result.getAligfile(), "Paste", format));\r
382             for (int i=0, j=al.getHeight(); i<j; i++) {\r
383               SequenceI sq = al.getSequenceAt(i);\r
384               if (!jalview.analysis.SeqsetUtils.SeqCharacterUnhash(\r
385                   sq, (Hashtable) SequenceInfo.get(sq.getName())))\r
386               {\r
387                 throw (new Exception(\r
388                     "Couldn't recover sequence properties for JNet "\r
389                     +((i==0) ? "Query sequence" : "alignment sequence ("+i+")")));\r
390               }\r
391             }\r
392             noMsa = false;\r
393             FirstSeq = 0;\r
394           }\r
395           else\r
396           {\r
397             throw (new Exception(\r
398                 "Unknown format 'format' for file : \n" +\r
399                 result.getAligfile()));\r
400           }\r
401         }\r
402         else\r
403         {\r
404           al = new Alignment(preds);\r
405           FirstSeq = prediction.getQuerySeqPosition();\r
406           if (!jalview.analysis.SeqsetUtils.SeqCharacterUnhash(\r
407               al.getSequenceAt(FirstSeq), SequenceInfo))\r
408           {\r
409             throw (new Exception(\r
410                 "Couldn't recover sequence properties for JNet Query sequence!"));\r
411           }\r
412         }\r
413 \r
414 \r
415         AlignmentAnnotation annot;\r
416         Annotation[] annotations = null;\r
417         int i = 0;\r
418         int width = preds[0].getSequence().length();\r
419 \r
420         int[] gapmap = al.getSequenceAt(FirstSeq).gapMap();\r
421 \r
422         if (gapmap.length != width)\r
423         {\r
424           throw (new Exception(\r
425               "Jnet Client Error\nNumber of residues in supposed query sequence :\n" +\r
426               al.getSequenceAt(FirstSeq).getName() + "\n" +\r
427               al.getSequenceAt(FirstSeq).getSequence() +\r
428               "\nDiffer from number of prediction sites in \n" +\r
429               result.getPredfile() + "\n"));\r
430         }\r
431 \r
432         // JBPNote Should also rename the query sequence sometime...\r
433         i = 0;\r
434 \r
435         while (i < preds.length)\r
436         {\r
437           String id = preds[i].getName().toUpperCase();\r
438 \r
439           if (id.startsWith("LUPAS") || id.startsWith("JNET") ||\r
440               id.startsWith("JPRED"))\r
441           {\r
442             annotations = new Annotation[al.getWidth()];\r
443 \r
444             if (id.equals("JNETPRED") || id.equals("JNETPSSM") ||\r
445                 id.equals("JNETFREQ") || id.equals("JNETHMM") ||\r
446                 id.equals("JNETALIGN") || id.equals("JPRED"))\r
447             {\r
448               for (int j = 0; j < width; j++)\r
449               {\r
450                 annotations[gapmap[j]] = new Annotation("", "",\r
451                     preds[i].getCharAt(j), 0);\r
452               }\r
453             }\r
454             else if (id.equals("JNETCONF"))\r
455             {\r
456               for (int j = 0; j < width; j++)\r
457               {\r
458                 float value = Float.parseFloat(preds[i].getCharAt(\r
459                     j) + "");\r
460                 annotations[gapmap[j]] = new Annotation(preds[i].getCharAt(\r
461                     j) + "", "", preds[i].getCharAt(j),\r
462                     value);\r
463               }\r
464             }\r
465             else\r
466             {\r
467               for (int j = 0; j < width; j++)\r
468               {\r
469                 annotations[gapmap[j]] = new Annotation(preds[i].getCharAt(\r
470                     j) + "", "", ' ', 0);\r
471               }\r
472             }\r
473 \r
474             if (id.equals("JNETCONF"))\r
475             {\r
476               annot = new AlignmentAnnotation(preds[i].getName(),\r
477                                               "JNet Output", annotations, 0f,\r
478                                               10f, 1);\r
479             }\r
480             else\r
481             {\r
482               annot = new AlignmentAnnotation(preds[i].getName(),\r
483                                               "JNet Output", annotations);\r
484             }\r
485 \r
486             al.addAnnotation(annot);\r
487 \r
488             if (noMsa)\r
489             {\r
490               al.deleteSequence(preds[i]);\r
491             }\r
492           }\r
493 \r
494           i++;\r
495         }\r
496 \r
497         Hashtable scores = prediction.getScores();\r
498 \r
499         /*  addFloatAnnotations(al, gapmap,  (Vector)scores.get("JNETPROPH"),\r
500                               "JnetpropH", "Jnet Helix Propensity", 0f,1f,1);\r
501 \r
502           addFloatAnnotations(al, gapmap,  (Vector)scores.get("JNETPROPB"),\r
503          "JnetpropB", "Jnet Beta Sheet Propensity", 0f,1f,1);\r
504 \r
505           addFloatAnnotations(al, gapmap,  (Vector)scores.get("JNETPROPC"),\r
506                               "JnetpropC", "Jnet Coil Propensity", 0f,1f,1);\r
507          */\r
508 \r
509         wsInfo.setProgressText(OutputHeader);\r
510         jalview.bin.Jalview.log.debug("Finished parsing output.");\r
511         AlignFrame af = new AlignFrame(al);\r
512 \r
513         Desktop.addInternalFrame(af, altitle,\r
514                                  AlignFrame.NEW_WINDOW_WIDTH,\r
515                                  AlignFrame.NEW_WINDOW_HEIGHT);\r
516       }\r
517       catch (Exception ex)\r
518       {\r
519         jalview.bin.Jalview.log.warn("Exception whilst parsing JNet style secondary structure prediction.");\r
520         jalview.bin.Jalview.log.debug("Exception: ",ex);\r
521       }\r
522     }\r
523   }\r
524 }\r