Add Annotation to specific sequence
[jalview.git] / src / jalview / ws / JPredClient.java
index 65f0325..6fd0a4a 100755 (executable)
@@ -26,6 +26,7 @@ import ext.vamsas.*;
 import jalview.analysis.*;\r
 import jalview.datamodel.*;\r
 import jalview.gui.*;\r
+import jalview.io.FormatAdapter;\r
 \r
 public class JPredClient\r
     extends WSClient\r
@@ -56,6 +57,7 @@ public class JPredClient
       wsInfo = setWebService();\r
 \r
     SequenceI seq = msf[0];\r
+\r
     altitle = "JNet prediction on " + seq.getName() +\r
         " using alignment from " + title;\r
 \r
@@ -64,8 +66,10 @@ public class JPredClient
                            AlignSeq.extractGaps("-. ", seq.getSequence()) +\r
                            "\n");\r
     SequenceI aln[] = new SequenceI[msf.length];\r
-    for (int i=0,j=msf.length; i<j;i++)\r
-      aln[i] = new jalview.datamodel.Sequence(msf[i]);\r
+    for (int i=0,j=msf.length; i<j;i++) {\r
+        aln[i] = new jalview.datamodel.Sequence(msf[i]);\r
+    }\r
+\r
     SequenceInfo = jalview.analysis.SeqsetUtils.uniquify(aln, true);\r
 \r
     if (!locateWebService())\r
@@ -136,7 +140,7 @@ public class JPredClient
                              " Service location failed\nfor URL :" + WsURL +\r
                              "\n" +\r
                              ex.getMessage());\r
-      wsInfo.setStatus(wsInfo.STATE_STOPPED_SERVERERROR);\r
+      wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_SERVERERROR);\r
 \r
       return false;\r
     }\r
@@ -171,9 +175,9 @@ public class JPredClient
       this.sequence.setSeq(AlignSeq.extractGaps("-. ",\r
                                                 msf[0].getSequence()));\r
 \r
-      jalview.io.PileUpfile mwrite = new jalview.io.PileUpfile();\r
       this.msa = new vamsas.objects.simple.Msfalignment();\r
-      msa.setMsf(mwrite.print(msf));\r
+      jalview.io.PileUpfile pileup = new jalview.io.PileUpfile();\r
+      msa.setMsf(pileup.print(msf));\r
     }\r
 \r
     public void run()\r
@@ -190,7 +194,7 @@ public class JPredClient
                 "Timed out when communicating with server\nTry again later.\n"));\r
           }\r
           if (result.getState()==0)\r
-            jalview.bin.Jalview.log.debug("Finished "+jobId);\r
+            jalview.bin.Cache.log.debug("Finished "+jobId);\r
           if (result.isRunning())\r
           {\r
             wsInfo.setStatus(WebserviceInfo.STATE_RUNNING);\r
@@ -248,16 +252,29 @@ public class JPredClient
           {\r
           }\r
         }\r
+        catch (OutOfMemoryError er)\r
+        {\r
+          jobComplete = true;\r
+          wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_ERROR);\r
+          JOptionPane.showInternalMessageDialog(Desktop.desktop,\r
+                                                "Out of memory handling result!!"\r
+                                                +\r
+              "\nSee help files for increasing Java Virtual Machine memory."\r
+                                                , "Out of memory",\r
+                                                JOptionPane.WARNING_MESSAGE);\r
+          System.out.println("JPredClient: "+er);\r
+          System.gc();\r
+        }\r
       }\r
-\r
-      if (! (result.isJobFailed() || result.isServerError()))\r
-      {\r
-        wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_OK);\r
-      }\r
-      else\r
-      {\r
-        wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_ERROR);\r
-      }\r
+      if (result!=null)\r
+        if (! (result.isJobFailed() || result.isServerError()))\r
+        {\r
+          wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_OK);\r
+        }\r
+        else\r
+        {\r
+          wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_ERROR);\r
+        }\r
     }\r
 \r
     void StartJob()\r
@@ -291,25 +308,36 @@ public class JPredClient
       }\r
       catch (Exception e)\r
       {\r
-        wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_SERVERERROR);\r
-        allowedServerExceptions = 0;\r
-        jobComplete = false;\r
-\r
-        wsInfo.appendProgressText("Failed to submit the prediction.\n"\r
-                                  +\r
-                                  "It is most likely that there is a problem with the server.\n"\r
-                                  + "Just close the window\n");\r
-        System.err.println(\r
-            "JPredWS Client: Failed to submit the prediction (Probably a server error - see below)\n" +\r
-            e.toString() + "\n");\r
-\r
-        jalview.bin.Jalview.log.debug("Failed Submission",e);\r
+        if (e.getMessage().indexOf("Exception")>-1) {\r
+          wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_SERVERERROR);\r
+          wsInfo.setProgressText(\r
+              "Failed to submit the prediction. (Just close the window)\n"\r
+              +\r
+              "It is most likely that there is a problem with the server.\n");\r
+          System.err.println(\r
+              "JPredWS Client: Failed to submit the prediction. Quite possibly because of a server error - see below)\n" +\r
+              e.getMessage() + "\n");\r
+\r
+          jalview.bin.Cache.log.warn("Server Exception",e);\r
+        } else {\r
+          wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_ERROR);\r
+          // JBPNote - this could be a popup informing the user of the problem.\r
+          wsInfo.setProgressText("Failed to submit the prediction:\n"\r
+                                 +e.getMessage()+\r
+                                 wsInfo.getProgressText());\r
+\r
+          jalview.bin.Cache.log.debug("Failed Submission",e);\r
+\r
+        }\r
+        allowedServerExceptions = -1;\r
+        jobComplete = true;\r
+\r
       }\r
     }\r
 \r
 \r
 \r
-    private void addFloatAnnotations(Alignment al, int[] gapmap,\r
+  /*  private void addFloatAnnotations(Alignment al, int[] gapmap,\r
                                      Vector values, String Symname,\r
                                      String Visname, float min,\r
                                      float max, int winLength)\r
@@ -325,7 +353,7 @@ public class JPredClient
 \r
       al.addAnnotation(new AlignmentAnnotation(Symname, Visname,\r
                                                annotations, min, max, winLength));\r
-    }\r
+    }*/\r
 \r
     void parseResult()\r
     {\r
@@ -356,38 +384,39 @@ public class JPredClient
 \r
       try\r
       {\r
-        jalview.bin.Jalview.log.debug("Parsing output from JNet job.");\r
+        jalview.bin.Cache.log.debug("Parsing output from JNet job.");\r
         // JPredFile prediction = new JPredFile("C:/JalviewX/files/jpred.txt", "File");\r
         jalview.io.JPredFile prediction = new jalview.io.JPredFile(result.\r
             getPredfile(),\r
             "Paste");\r
         SequenceI[] preds = prediction.getSeqsAsArray();\r
-        jalview.bin.Jalview.log.debug("Got prediction profile.");\r
+        jalview.bin.Cache.log.debug("Got prediction profile.");\r
         Alignment al;\r
         int FirstSeq; // the position of the query sequence in Alignment al\r
         boolean noMsa = true; // set if no MSA has been returned by JPred\r
 \r
         if ( (this.msa != null) && (result.getAligfile() != null))\r
         {\r
-          jalview.bin.Jalview.log.debug("Getting associated alignment.");\r
+          jalview.bin.Cache.log.debug("Getting associated alignment.");\r
           // we ignore the returned alignment if we only predicted on a single sequence\r
           String format = jalview.io.IdentifyFile.Identify(result.getAligfile(),\r
               "Paste");\r
 \r
           if (jalview.io.FormatAdapter.formats.contains(format))\r
           {\r
-            al = new Alignment(jalview.io.FormatAdapter.readFile(\r
+            al = new Alignment(new FormatAdapter().readFile(\r
                 result.getAligfile(), "Paste", format));\r
+            SequenceI sqs[] = new SequenceI[al.getHeight()];\r
             for (int i=0, j=al.getHeight(); i<j; i++) {\r
-              SequenceI sq = al.getSequenceAt(i);\r
-              if (!jalview.analysis.SeqsetUtils.SeqCharacterUnhash(\r
-                  sq, (Hashtable) SequenceInfo.get(sq.getName())))\r
+              sqs[i] = al.getSequenceAt(i);\r
+            }\r
+            if (!jalview.analysis.SeqsetUtils.deuniquify(\r
+                  (Hashtable) SequenceInfo,sqs))\r
               {\r
                 throw (new Exception(\r
-                    "Couldn't recover sequence properties for JNet "\r
-                    +((i==0) ? "Query sequence" : "alignment sequence ("+i+")")));\r
+                    "Couldn't recover sequence properties for alignment."));\r
               }\r
-            }\r
+\r
             noMsa = false;\r
             FirstSeq = 0;\r
           }\r
@@ -410,6 +439,7 @@ public class JPredClient
           }\r
         }\r
 \r
+        al.setDataset(null);\r
 \r
         AlignmentAnnotation annot;\r
         Annotation[] annotations = null;\r
@@ -431,6 +461,8 @@ public class JPredClient
         // JBPNote Should also rename the query sequence sometime...\r
         i = 0;\r
 \r
+        SequenceI seqRef = al.getSequenceAt(FirstSeq);\r
+\r
         while (i < preds.length)\r
         {\r
           String id = preds[i].getName().toUpperCase();\r
@@ -474,7 +506,8 @@ public class JPredClient
             {\r
               annot = new AlignmentAnnotation(preds[i].getName(),\r
                                               "JNet Output", annotations, 0f,\r
-                                              10f, 1);\r
+                                              10f,\r
+                                              AlignmentAnnotation.BAR_GRAPH);\r
             }\r
             else\r
             {\r
@@ -482,7 +515,7 @@ public class JPredClient
                                               "JNet Output", annotations);\r
             }\r
 \r
-            al.addAnnotation(annot);\r
+            al.addAnnotation(annot, seqRef);\r
 \r
             if (noMsa)\r
             {\r
@@ -493,7 +526,7 @@ public class JPredClient
           i++;\r
         }\r
 \r
-        Hashtable scores = prediction.getScores();\r
+        //Hashtable scores = prediction.getScores();\r
 \r
         /*  addFloatAnnotations(al, gapmap,  (Vector)scores.get("JNETPROPH"),\r
                               "JnetpropH", "Jnet Helix Propensity", 0f,1f,1);\r
@@ -506,7 +539,7 @@ public class JPredClient
          */\r
 \r
         wsInfo.setProgressText(OutputHeader);\r
-        jalview.bin.Jalview.log.debug("Finished parsing output.");\r
+        jalview.bin.Cache.log.debug("Finished parsing output.");\r
         AlignFrame af = new AlignFrame(al);\r
 \r
         Desktop.addInternalFrame(af, altitle,\r
@@ -515,8 +548,7 @@ public class JPredClient
       }\r
       catch (Exception ex)\r
       {\r
-        jalview.bin.Jalview.log.warn("Exception whilst parsing JNet style secondary structure prediction.");\r
-        jalview.bin.Jalview.log.debug("Exception: ",ex);\r
+        jalview.bin.Cache.log.warn("Exception whilst parsing JNet style secondary structure prediction.",ex);\r
       }\r
     }\r
   }\r