X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fjws1%2FJPredClient.java;h=3b7bdb6bb38303aca89180cfb846ab4a7009ff13;hb=b3ec8456ea631e97597568e9bc66ec546eb0417f;hp=2e000f815733859d5a47db7ca1b32c0d38191869;hpb=ad15cff29620f960119f80176f1fd443da9f6763;p=jalview.git diff --git a/src/jalview/ws/jws1/JPredClient.java b/src/jalview/ws/jws1/JPredClient.java index 2e000f8..3b7bdb6 100644 --- a/src/jalview/ws/jws1/JPredClient.java +++ b/src/jalview/ws/jws1/JPredClient.java @@ -27,6 +27,7 @@ import jalview.datamodel.SeqCigar; import jalview.datamodel.SequenceI; import jalview.gui.AlignFrame; import jalview.gui.Desktop; +import jalview.gui.JvOptionPane; import jalview.gui.WebserviceInfo; import jalview.util.MessageManager; @@ -36,7 +37,6 @@ import java.util.Hashtable; import javax.swing.JMenu; import javax.swing.JMenuItem; -import javax.swing.JOptionPane; import ext.vamsas.Jpred; import ext.vamsas.JpredServiceLocator; @@ -59,9 +59,8 @@ public class JPredClient extends WS1Client * @param viewonly * TODO */ - public JPredClient(ext.vamsas.ServiceHandle sh, String title, - boolean msa, AlignmentView alview, AlignFrame parentFrame, - boolean viewonly) + public JPredClient(ext.vamsas.ServiceHandle sh, String title, boolean msa, + AlignmentView alview, AlignFrame parentFrame, boolean viewonly) { super(); wsInfo = setWebService(sh); @@ -154,7 +153,8 @@ public class JPredClient extends WS1Client { if (!msa && msf.length > 1) { - throw new Error(MessageManager.getString("error.implementation_error_multiple_single_sequence_prediction_jobs_not_supported")); + throw new Error(MessageManager.getString( + "error.implementation_error_multiple_single_sequence_prediction_jobs_not_supported")); } String altitle = getPredictionName(WebServiceName) + " for " @@ -183,8 +183,8 @@ public class JPredClient extends WS1Client private String getPredictionName(String webServiceName) { - if (webServiceName.toLowerCase().indexOf( - "secondary structure prediction") > -1) + if (webServiceName.toLowerCase() + .indexOf("secondary structure prediction") > -1) { return webServiceName; } @@ -236,12 +236,13 @@ public class JPredClient extends WS1Client SequenceI seq = msf[0]; - String altitle = "JNet prediction on " + seq.getName() + String altitle = "JPred prediction on " + seq.getName() + " using alignment from " + title; wsInfo.setProgressText("Job details for MSA based prediction (" + title + ") on sequence :\n>" + seq.getName() + "\n" - + AlignSeq.extractGaps("-. ", seq.getSequenceAsString()) + "\n"); + + AlignSeq.extractGaps("-. ", seq.getSequenceAsString()) + + "\n"); SequenceI aln[] = new SequenceI[msf.length]; for (int i = 0, j = msf.length; i < j; i++) { @@ -272,8 +273,9 @@ public class JPredClient extends WS1Client } wsInfo.setProgressText("Job details for prediction on sequence :\n>" + seq.getName() + "\n" - + AlignSeq.extractGaps("-. ", seq.getSequenceAsString()) + "\n"); - String altitle = "JNet prediction for sequence " + seq.getName() + + AlignSeq.extractGaps("-. ", seq.getSequenceAsString()) + + "\n"); + String altitle = "JPred prediction for sequence " + seq.getName() + " from " + title; Hashtable SequenceInfo = jalview.analysis.SeqsetUtils @@ -294,7 +296,8 @@ public class JPredClient extends WS1Client private WebserviceInfo setWebService() { WebServiceName = "JNetWS"; - WebServiceJobTitle = MessageManager.getString("label.jnet_secondary_structure_prediction"); + WebServiceJobTitle = MessageManager + .getString("label.jnet_secondary_structure_prediction"); WebServiceReference = "\"Cuff J. A and Barton G.J (2000) Application of " + "multiple sequence alignment profiles to improve protein secondary structure prediction, " + "Proteins 40:502-511\"."; @@ -320,13 +323,17 @@ public class JPredClient extends WS1Client } catch (Exception ex) { - JOptionPane.showMessageDialog(Desktop.desktop, - MessageManager.formatMessage("label.secondary_structure_prediction_service_couldnt_be_located", new String[]{WebServiceName,WsURL}), - MessageManager.getString("label.internal_jalview_error"), - JOptionPane.WARNING_MESSAGE); - wsInfo.setProgressText(MessageManager.formatMessage("label.secondary_structure_prediction_service_couldnt_be_located", new String[]{WebServiceName,WsURL}) - + "\n" - + ex.getMessage()); + JvOptionPane.showMessageDialog(Desktop.desktop, + MessageManager.formatMessage( + "label.secondary_structure_prediction_service_couldnt_be_located", + new String[] + { WebServiceName, WsURL }), + MessageManager.getString("label.internal_jalview_error"), + JvOptionPane.WARNING_MESSAGE); + wsInfo.setProgressText(MessageManager.formatMessage( + "label.secondary_structure_prediction_service_couldnt_be_located", + new String[] + { WebServiceName, WsURL }) + "\n" + ex.getMessage()); wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_SERVERERROR); } @@ -334,6 +341,7 @@ public class JPredClient extends WS1Client return server; } + @Override public void attachWSMenuEntry(JMenu wsmenu, final ServiceHandle sh, final AlignFrame af) { @@ -341,14 +349,15 @@ public class JPredClient extends WS1Client method.setToolTipText(sh.getEndpointURL()); method.addActionListener(new ActionListener() { + @Override public void actionPerformed(ActionEvent e) { AlignmentView msa = af.gatherSeqOrMsaForSecStrPrediction(); if (msa.getSequences().length == 1) { // Single Sequence prediction - new jalview.ws.jws1.JPredClient(sh, af.getTitle(), false, msa, - af, true); + new jalview.ws.jws1.JPredClient(sh, af.getTitle(), false, msa, af, + true); } else {