web pages url updates
[jabaws.git] / website / man_dev.html
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!DOCTYPE html PUBLIC "XHTML 1.0 Strict"\r
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\r
4 <html xmlns="http://www.w3.org/1999/xhtml">\r
5 <head>\r
6 <meta name="Last-modified" content="Mon, 4 Apr 2011 12:00:00 GMT"/>\r
7 <title>Java Bioinformatics Analyses Web Services (JABAWS) client developers manual</title>\r
8 <link href="ws.css" rel="stylesheet" type="text/css" media=\r
9 "screen, projection, handheld, tv" />\r
10 <link rel="stylesheet" type="text/css" media="print" href=\r
11 "print.css" />\r
12 <script type="text/javascript" src="prototype-1.6.0.3.js"></script>\r
13 </head>\r
14 <body>\r
15 <div id="page">\r
16 <div id="banner">\r
17 <table> \r
18 <tr><td style="width:158px;"><a href="http://www.dundee.ac.uk"><img src="images/uod_lt_long.gif"  alt="University of Dundee" width="158" height="90" class="logo"  title="University of Dundee" longdesc="http://www.dundee.ac.uk"/></a></td>\r
19 <td class="bg"><img src="images/jabaws2.png" alt="JABAWS-2.0" title="Java Bioinformatics Analysis Web Services version 2.0"/></td>\r
20 <td class="bg"><img src="images/banner_right.png" alt="Disorder" width="200" height="80"/></td>\r
21 </tr>\r
22 </table>\r
23 </div><!-- banner end-->\r
24 \r
25 <div id="wrapper">\r
26 <div id="panel"><a href="index.html">Home</a> \r
27  <a href="quick_start.html">Getting Started</a> \r
28  <a class="selected" href="man_about.html">Manual</a> \r
29         <div id="submenu">\r
30                 <a href="man_about.html">About</a>\r
31                 <a href="man_servervm.html" title="JABAWS Server as Virtual Appliance">Server VA</a>\r
32                 <a href="man_awscloud.html" title="JABAWS Server in the Amazon EC2 Cloud">Server in the Cloud</a>\r
33                 <a href="man_serverwar.html" title="JABAWS Server as Web Application aRchive">Server WAR</a>\r
34                 <a href="man_configuration.html" >Server<br/>\r
35                 Configuration</a>\r
36                 <a href="man_client.html" title="JABAWS Command Line Client">CMD Client</a>\r
37                 <a href="man_stats.html" title="JABAWS Usage Statistics">Usage Statistics</a>\r
38                 <a class="selected" href="man_dev.html" title="Accessing JABAWS from your program">Accessing<br/>\r
39                 JABAWS</a>      \r
40                 <a href="man_server_dev.html" >JABAWS Development</a>\r
41         </div>\r
42 <a href="http://www.compbio.dundee.ac.uk/download">Download</a> \r
43 <a href="PublicAnnualStat" title="JABAWS server usage statistics">Usage Statistics</a>\r
44  <a href="ServiceStatus" title="JABAWS webservices status. Click to test all web services. Please be patient while the services are being checked">Services Status</a>\r
45 <a href="contacts.html">Contact Us</a>\r
46 <a href="http://www.compbio.dundee.ac.uk" title="University of Dundee, The Barton Group" >Barton Group</a>\r
47 \r
48 </div>\r
49 \r
50 <!-- panel end-->\r
51 <div id="content">\r
52 <h2 id="headtitle">JABAWS MANUAL</h2>\r
53 \r
54 <h2>Using JABAWS From Your Program </h2>\r
55 <ul>\r
56   <li><a href="#wsfunctions">Web services functions overview </a></li>\r
57   <li><a href="#templatestr">The template client structure</a></li>\r
58   <li><a href="#connectto">Connecting to JABAWS</a></li>\r
59   <li><a href="#validnames">Valid JABAWS service names and WSDL files</a></li>\r
60   <li><a href="#defalign">Aligning sequences</a></li>\r
61   <li><a href="#checkresults">Checking the status of the calculation </a></li>\r
62   <li><a href="#presetalign">Aligning with presets</a></li>\r
63   <li><a href="#customalign">Aligning with custom parameters</a></li>\r
64   <li><a href="#writingaltofile">Writing alignments to a file</a></li>\r
65   <li><a href="#compex">A complete client example </a></li>\r
66   <li><a href="#buildart">Building web services artifacts</a></li>\r
67 </ul>\r
68 <h3><a name="wsfunctions" id="wsfunctions"></a>Web services functions overview </h3>\r
69 <p>All JABA multiple sequence alignment web services comply to the same interface, thus the function described below are available from all the services. </p>\r
70 <p><strong>Functions for initiating the alignment </strong><span class="code">  String id = align(List&lt;FastaSequence&gt; list)<br />\r
71   String id = customAlign(List&lt;FastaSequence&gt; sequenceList, List&lt;Option&gt; optionList)<br />\r
72   String id = presetAlign(List&lt;FastaSequence&gt; sequenceList, Preset preset)</span></p>\r
73 <p><strong>Functions pertaining to job monitoring and control</strong><br />\r
74   <span class="code">JobStatus status = getJobStatus(String id)<br />\r
75   Alignment al = getResult(String id)<br />\r
76   boolean cancelled = cancelJob(String id)<br />\r
77   ChunkHolder chunk = pullExecStatistics(String id, long marker)</span></p>\r
78 <p><strong>Functions relating to service features discovery</strong><br />\r
79   <span class="code">RunnerConfig rc = getRunnerOptions()<br />\r
80   Limit limit = getLimit(String name)<br />\r
81   LimitsManager lm = getLimits()<br />\r
82   PresetManager pm = getPresets()</span></p>\r
83 <p>Please refer to a <a href="dm_javadoc/compbio/data/msa/MsaWS.html">data model  javadoc</a> for a detailed description of each methods. </p>\r
84 <h3><a name="templatestr" id="templatestr"></a>Structure of the template command line client</h3>\r
85 <table width="100%" border="1">\r
86   <tr>\r
87     <td style="width:19%"><strong>Packages</strong></td>\r
88     <td style="width:81%"><strong>Classes and Interfaces </strong></td>\r
89   </tr>\r
90   <tr>\r
91     <td>compbio.data.msa </td>\r
92     <td>MsaWS the interface for all multiple sequence alignment web services </td>\r
93   </tr>\r
94   <tr>\r
95     <td>compbio.data.sequence</td>\r
96     <td>JABAWS data types </td>\r
97   </tr>\r
98   <tr>\r
99     <td>compbio.metadata</td>\r
100     <td>JABAWS meta data types </td>\r
101   </tr>\r
102   <tr>\r
103     <td>compbio.ws.client</td>\r
104     <td>JABAWS command line client </td>\r
105   </tr>\r
106 </table>\r
107 <p>Additional utility libraries this client depend upon is the compbio-util-1.3.jar and compbio-annotation-1.0.jar. <br />\r
108   Please refer to a <a href="dm_javadoc/index.html">data model javadoc</a> for a detailed description of each class and its methods. </p>\r
109 <h3><a name="connectto" id="connectto"></a>Connecting to JABAWS</h3>\r
110 <p class="attention">For a complete working example of JABAWS command line client please see compbio.ws.client.Jws2Client class. JABAWS command line client source code is available from the <a href="http://www.compbio.dundee.ac.uk/download">download page</a>. Please note that for now all the examples are in Java other languages will follow given a sufficient demand. </p>\r
111 <p>Download a binary JABAWS client. Add the client to the class path. The following code excerpt will connect your program to Clustal web service deployed in the University of Dundee. </p>\r
112 <p class="code"> import java.net.URL;<br />\r
113   import javax.xml.namespace.QName;<br />\r
114   import javax.xml.ws.Service;<br />\r
115   ...............<br />\r
116   1) String qualifiedName = &quot;http://msa.data.compbio/01/01/2010/&quot;;<br />\r
117   2) URL url = new URL(&quot;http://www.compbio.dundee.ac.uk/jabaws/ClustalWS?wsdl&quot;);<br />\r
118   3) QName qname = new QName(, &quot;ClustalWS&quot;);<br />\r
119   4) Service serv = Service.create(url, qname);<br />\r
120   5) MsaWS msaws = serv.getPort(new QName(qualifiedName, &quot;ClustalWSPort&quot;),\r
121   MsaWS.class);</p>\r
122 <p>Line 1 makes a qualified name for JABA web services.<br />\r
123   Line 2 \r
124   constructs the URL to the web services WSDL. <br />\r
125   Line 3 makes a qualified name instance for Clustal JABA web service. <br />\r
126   Line 4 creates a service instance.<br />\r
127   Line 5 makes a connection to the server. </p>\r
128 <p>A more generic connection method would look like this </p>\r
129 <p class="code"> import java.net.URL;<br />\r
130   import javax.xml.namespace.QName;<br />\r
131   import javax.xml.ws.Service;<br />\r
132   import compbio.ws.client.Services<br />\r
133   .............. <br />\r
134   String qualifiedServiceName = &quot;http://msa.data.compbio/01/01/2010/&quot;;<br />\r
135   String host = &quot;http://www.compbio.dundee.ac.uk/jabaws&quot;;<br />\r
136   // In real life the service name can come from args<br />\r
137   Services clustal = Services.ClustalWS;<br />\r
138   URL url = new URL(host + &quot;/&quot; + clustal.toString() + &quot;?wsdl&quot;);<br />\r
139   QName qname = new QName(qualifiedServiceName, clustal.toString());<br />\r
140   Service serv = Service.create(url, qname);<br />\r
141   MsaWS msaws = serv.getPort(new QName(qualifiedServiceName, clustal<br />\r
142   + &quot;Port&quot;), MsaWS.class);</p>\r
143 <p>Where Services is enumeration of JABAWS web services. All JABAWS multiple sequence alignment methods confirm to MsaWS specification, thus from the caller point of view all JABAWS web services can be represented by MsaWS interface. The full documentation of MsaWS functions is available from the <a href="dm_javadoc/compbio/data/msa/MsaWS.html">javadoc</a>. </p>\r
144 <h3><a name="validnames" id="validnames"></a>Valid JABAWS service names and WSDL files </h3>\r
145 <p>Multiple sequence alignment services </p>\r
146 <ul><li><a href="http://www.compbio.dundee.ac.uk/jabaws/ClustalOWS?wsdl">ClustalOWS</a> (http://www.compbio.dundee.ac.uk/jabaws/ClustalOWS?wsdl) </li>\r
147   <li><a href="http://www.compbio.dundee.ac.uk/jabaws/ClustalWS?wsdl">ClustalWS</a> (http://www.compbio.dundee.ac.uk/jabaws/ClustalWS?wsdl) </li>\r
148   <li><a href="http://www.compbio.dundee.ac.uk/jabaws/MuscleWS?wsdl">MuscleWS</a> (http://www.compbio.dundee.ac.uk/jabaws/MuscleWS?wsdl) </li>\r
149   <li><a href="http://www.compbio.dundee.ac.uk/jabaws/MafftWS?wsdl">MafftWS</a> (http://www.compbio.dundee.ac.uk/jabaws/MafftWS?wsdl) </li>\r
150   <li><a href="http://www.compbio.dundee.ac.uk/jabaws/TcoffeeWS?wsdl">TcoffeeWS</a> (http://www.compbio.dundee.ac.uk/jabaws/TcoffeeWS?wsdl) </li>\r
151   <li><a href="http://www.compbio.dundee.ac.uk/jabaws/ProbconsWS?wsdl">ProbconsWS</a> (http://www.compbio.dundee.ac.uk/jabaws/ProbconsWS?wsdl) </li>\r
152   </ul>\r
153 <p>Protein disorder prediction services </p>\r
154 <ul>\r
155   <li><a href="http://www.compbio.dundee.ac.uk/jabaws/IUPredWS?wsdl">IUPredWS</a> (http://www.compbio.dundee.ac.uk/jabaws/IUPredWS?wsdl) </li>\r
156   <li><a href="http://www.compbio.dundee.ac.uk/jabaws/GlobPlotWS?wsdl">GlobPlotWS</a> (http://www.compbio.dundee.ac.uk/jabaws/GlobPlotWS?wsdl) </li>\r
157   <li><a href="http://www.compbio.dundee.ac.uk/jabaws/DisemblWS?wsdl">DisemblWS</a> (http://www.compbio.dundee.ac.uk/jabaws/DisemblWS?wsdl) </li>\r
158   <li><a href="http://www.compbio.dundee.ac.uk/jabaws/JronnWS?wsdl">JronnWS</a> (http://www.compbio.dundee.ac.uk/jabaws/JronnWS?wsdl) </li>\r
159   </ul>\r
160 <p>Amino acid conservation service</p>\r
161 <ul>\r
162   <li><a href="http://www.compbio.dundee.ac.uk/jabaws/AAConWS?wsdl">AAConWS</a> (http://www.compbio.dundee.ac.uk/jabaws/AAConWS?wsdl) </li>\r
163   </ul>\r
164 <p>Please replace <span class="hightlight">http://www.compbio.dundee.ac.uk/</span> with your JABAWS instance host name, and <span class="hightlight">jabaws</span> with your JABAWS context name to access your local version of JABAWS web services. For example <span class="hightlight">http://localhost:8080/jabaws</span> would be a valid URL for the default Apache-Tomcat installation and jabaws.war file deployment. </p>\r
165 <h3><a name="defalign" id="defalign"></a>Aligning sequences </h3>\r
166 <p>Given that <span class="hightlight">msaws</span> is web service proxy, created as described in &quot;Connecting to JABAWS&quot; section, the actual alignment can be obtained as follows: </p>\r
167 <p class="code">1) List&lt;FastaSequence&gt; fastalist = SequenceUtil.readFasta(new FileInputStream(file));<br />\r
168   2) String jobId = msaws.align(fastalist); <br />\r
169   3) Alignment alignment = msaws.getResult(jobId);</p>\r
170 <p>Line  one loads FASTA sequence from the file<br />\r
171   Line two submits them to web service represented by msaws proxy <br />\r
172   Line three retrieves the alignment from a web service. This line will block the execution until the result is available. Use this with caution. In general, you should make sure that the calculation has been completed before attempting retrieving results. This is to avoid keeping the connection to the server on hold for a prolonged periods of time. While this may be ok with your local server, our public server (<a href="http://www.compbio.dundee.ac.uk/jabaws">www.compbio.dundee.ac.uk/jabaws</a>) will not let you hold the connection for longer than 10 minutes. This is done to prevent excessive load on the server. The next section describes how to check the status of the calculation.<br />\r
173   Methods and classes mentioned in the excerpt are available from the JABAWS client library. </p>\r
174 <h3><a name="checkresults" id="checkresults"></a>Checking the status of the calculation </h3>\r
175 <p> You may have noticed that there was no pause between submitting the job and retrieving of the results. This is because <span class="hightlight">getResult(jobId)</span> method block the processing until the calculation is completed. However, taking into account that the connection holds server resources, our public server (<a href="http://www.compbio.dundee.ac.uk/jabaws">www.compbio.dundee.ac.uk/jabaws</a>) is configured to reset the connection after 10 minutes of waiting. To work around the connection reset you are encouraged to check whether the calculation has been completed before accessing the results.       You can do it like this: </p>\r
176 <p> <span class="code">while (msaws.getJobStatus(jobId) != JobStatus.FINISHED) {<br />\r
177   &nbsp;&nbsp;&nbsp;&nbsp;Thread.sleep(2000); // wait two  seconds, then recheck the status <br />\r
178   }</span></p>\r
179 <h3><a name="presetalign" id="presetalign"></a>Aligning with presets</h3>\r
180 <p class="code">1) PresetManager presetman = msaws.getPresets();<br />\r
181   2) Preset preset = presetman.getPresetByName(presetName);<br />\r
182   3) List&lt;FastaSequence&gt; fastalist = SequenceUtil.readFasta(new FileInputStream(file));<br />\r
183   4) String jobId = msaws.presetAlign(fastalist, preset);<br />\r
184   5) Alignment alignment = msaws.getResult(jobId);</p>\r
185 <p>Line one obtains the lists of presets supported by a web service.<br />\r
186   Line two return a particular Preset \r
187   by its name<br />\r
188   Lines three to five  are doing the same job as in the first <a href="#defalign"> aligning sequences example</a>.</p>\r
189 <h3><a name="customalign" id="customalign"></a>Aligning with  custom parameters</h3>\r
190 <p class="code"> 1) RunnerConfig options = msaws.getRunnerOptions();<br />\r
191   2) Argument matrix = options.getArgument(&quot;MATRIX&quot;);<br />\r
192   3) matrix.setValue(&quot;PAM300&quot;);<br />\r
193   4) Argument gapopenpenalty = options.getArgument(&quot;GAPOPEN&quot;);<br />\r
194   5) gapopenpenalty.setValue(&quot;20&quot;);<br />\r
195   6) List&lt;Argument&gt; arguments = new ArrayList&lt;Argument&gt;(); <br />\r
196   7) arguments.add(matrix);\r
197   arguments.add(gapopenpenalty);<br />\r
198   8) List&lt;FastaSequence&gt; fastalist = SequenceUtil.readFasta(new FileInputStream(file));<br />\r
199   9) String jobId = msaws.customAlign(fastalist, arguments);<br />\r
200   10) Alignment alignment = msaws.getResult(jobId);</p>\r
201 <p>Line one obtains the <span class="hightlight">RunnerConfig</span> object that holds information on supported parameters and their values<br />\r
202   Line two retrieve a particular parameter from the holder by its name<br />\r
203   Lines three sets a value to this parameter which will be used in the calculation. <br />\r
204   Line four and five do the same but for another parameter<br />\r
205   Line 6 makes a List to hold the parameters <br />\r
206   Line seven puts the parameters into that list<br />\r
207   Line eight \r
208   and ten is the same as in previous examples<br />\r
209   Line nine submit an alignment request with the sequences and the parameters <br />\r
210   The names of all the parameters supported by a web service e.g. &quot;PAM300&quot; can be obtained using <span class="hightlight">options.getArguments() </span>method. Further details on the methods available from <span class="hightlight">RunnerConfig</span> object are available from the <a href="dm_javadoc/index.html">javadoc</a>. </p>\r
211 <h3><a name="writingaltofile" id="writingaltofile"></a>Writing alignments to a file</h3>\r
212 <p>There is a utility method in the client library that does exactly that. </p>\r
213 <p> <span class="code">Alignment alignment = align(...) <br />\r
214   FileOutputStream outStream = new FileOutputStream(file);<br />\r
215   ClustalAlignmentUtil.writeClustalAlignment(outStream, align);</span></p>\r
216 <h3><a name="compex" id="compex"></a>A complete client example </h3>\r
217 <p>Finally, a complete example of the program that connects to JABAWS Clustal service and aligns sequences using one of the  Clustal web service preset. Three is also a <a href="Example_template.pdf">PDF version</a> of this example with syntax highlighted. The text comments are commented by block style comments e.g. /* comment */, the alternatives given in the code are line commented // comment. You may want to remove line style comments to test alternatives of the functions. All you need for this to work is a <a href="http://www.compbio.dundee.ac.uk/download/get?id=min-jaba-client-2.0.jar">JABAWS binary client</a>. Please make sure that the client is in the Java class path before running this example.</p>\r
218 <pre class="code" style="line-height:1em;">\r
219 import java.io.ByteArrayInputStream;\r
220 import java.io.FileNotFoundException;\r
221 import java.io.IOException;\r
222 import java.net.URL;\r
223 import java.util.List;\r
224 \r
225 import javax.xml.namespace.QName;\r
226 import javax.xml.ws.Service;\r
227 \r
228 import compbio.data.msa.MsaWS;\r
229 import compbio.data.sequence.Alignment;\r
230 import compbio.data.sequence.FastaSequence;\r
231 import compbio.data.sequence.SequenceUtil;\r
232 import compbio.metadata.JobSubmissionException;\r
233 import compbio.metadata.LimitExceededException;\r
234 import compbio.metadata.Preset;\r
235 import compbio.metadata.PresetManager;\r
236 import compbio.metadata.ResultNotAvailableException;\r
237 import compbio.metadata.UnsupportedRuntimeException;\r
238 import compbio.metadata.WrongParameterException;\r
239 \r
240 public class Example {\r
241 \r
242         /*\r
243          * Input sequences for alignment\r
244          */\r
245         static final String input = &quot;&gt;Foo\r\n&quot;\r
246                         + &quot;MTADGPRELLQLRAAVRHRPQDFVAWLMLADAELGMGDTTAGEMAVQRGLALHPGHPEAVARLGR&quot;\r
247                         + &quot;VRWTQQRHAEAAVLLQQASDAAPEHPGIALWLGHALEDAGQAEAAAAAYTRAHQLLPEEPYITAQ&quot;\r
248                         + &quot;LLNWRRRLCDWRALDVLSAQVRAAVAQGVGAVEPFAFLSEDASAAEQLACARTRAQAIAASVRPL&quot;\r
249                         + &quot;APTRVRSKGPLRVGFVSNGFGAHPTGLLTVALFEALQRRQPDLQMHLFATSGDDGSTLRTRLAQA&quot;\r
250                         + &quot;STLHDVTALGHLATAKHIRHHGIDLLFDLRGWGGGGRPEVFALRPAPVQVNWLAYPGTSGAPWMD&quot;\r
251                         + &quot;YVLGDAFALPPALEPFYSEHVLRLQGAFQPSDTSRVVAEPPSRTQCGLPEQGVVLCCFNNSYKLN&quot;\r
252                         + &quot;PQSMARMLAVLREVPDSVLWLLSGPGEADARLRAFAHAQGVDAQRLVFMPKLPHPQYLARYRHAD&quot;\r
253                         + &quot;LFLDTHPYNAHTTASDALWTGCPVLTTPGETFAARVAGSLNHHLGLDEMNVADDAAFVAKAVALAS&quot;\r
254                         + &quot;DPAALTALHARVDVLRRESGVFEMDGFADDFGALLQALARRHGWLGI\r\n&quot;\r
255                         + &quot;\r\n&quot;\r
256                         + &quot;&gt;Bar\r\n&quot;\r
257                         + &quot;MGDTTAGEMAVQRGLALHQQRHAEAAVLLQQASDAAPEHPGIALWLHALEDAGQAEAAAAYTRAH&quot;\r
258                         + &quot;QLLPEEPYITAQLLNAVAQGVGAVEPFAFLSEDASAAESVRPLAPTRVRSKGPLRVGFVSNGFGA&quot;\r
259                         + &quot;HPTGLLTVALFEALQRRQPDLQMHLFATSGDDGSTLRTRLAQASTLHDVTALGHLATAKHIRHHG&quot;\r
260                         + &quot;IDLLFDLRGWGGGGRPEVFALRPAPVQVNWLAYPGTSGAPWMDYVLGDAFALPPALEPFYSEHVL&quot;\r
261                         + &quot;RLQGAFQPSDTSRVVAEPPSRTQCGLPEQGVVLCCFNNSYKLNPQSMARMLAVLREVPDSVLWLL&quot;\r
262                         + &quot;SGPGEADARLRAFAHAQGVDAQRLVFMPKLPHPQYLARYRHADLFLDTHPYNAHTTASDALWTGC&quot;\r
263                         + &quot;PVLTTPGETFAARVAGSLNHHLGLDEMNVADDAAFVAKAVALASDPAALTALHARVDVLRRESGV&quot;\r
264                         + &quot;FEMDGFADDFGALLQALARRHGWLGI\r\n&quot;\r
265                         + &quot;\r\n&quot;\r
266                         + &quot;&gt;Friends\r\n&quot;\r
267                         + &quot;MTADGPRELLQLRAAVRHRPQDVAWLMLADAELGMGDTTAGEMAVQRGLALHPGHPEAVARLGRV&quot;\r
268                         + &quot;RWTQQRHAEAAVLLQQASDAAPEHPGIALWLGHALEDHQLLPEEPYITAQLDVLSAQVRAAVAQG&quot;\r
269                         + &quot;VGAVEPFAFLSEDASAAEQLACARTRAQAIAASVRPLAPTRVRSKGPLRVGFVSNGFGAHPTGLL&quot;\r
270                         + &quot;TVALFEALQRRQPDLQMHLFATSGDDGSTLRTRLAQASTLHDVTALGHLATAKHIRHHGIDLLFD&quot;\r
271                         + &quot;LRGWGGGGRPEVFALRPAPVQVNWLAYPGTSGAPWMDYVLGDAFALPPALEPFYSEHVLRLQGAF&quot;\r
272                         + &quot;QPSDTSRVVAEPPSRTQCGLPEQGVVLCCFNNSYKLNPQSMARMLAVLREVPDSVLWLLSGPGEA&quot;\r
273                         + &quot;DARLRAFAHAQGVDAQRLVFMPKLPHPQYLARYRHADLFLDTHPYNAHTTASDALWTGCPVLTTP&quot;\r
274                         + &quot;GETFAARVAGSLNHHLGLDEMNVADDAAFVAKAVALASDPAALTALHARVDVLRRESI&quot;;\r
275 \r
276         public static void main(String[] args) throws UnsupportedRuntimeException,\r
277                         LimitExceededException, JobSubmissionException,\r
278                         WrongParameterException, FileNotFoundException, IOException,\r
279                         ResultNotAvailableException, InterruptedException {\r
280 \r
281                 String qualifiedServiceName = &quot;http://msa.data.compbio/01/01/2010/&quot;;\r
282 \r
283                 /* Make a URL pointing to web service WSDL */\r
284                 URL url = new URL(\r
285                                 &quot;http://www.compbio.dundee.ac.uk/jabaws/ClustalWS?wsdl&quot;);\r
286 \r
287                 /*\r
288                  * If you are making a client that connects to different web services\r
289                  * you can use something like this:\r
290                  */\r
291                 // URL url = new URL(host + &quot;/&quot; + Services.ClustalWS.toString() +\r
292                 // &quot;?wsdl&quot;);\r
293 \r
294                 QName qname = new QName(qualifiedServiceName, &quot;ClustalWS&quot;);\r
295                 Service serv = Service.create(url, qname);\r
296                 /*\r
297                  * Multiple sequence alignment interface for Clustal web service\r
298                  * instance\r
299                  */\r
300                 MsaWS msaws = serv.getPort(new QName(qualifiedServiceName, &quot;ClustalWS&quot;\r
301                                 + &quot;Port&quot;), MsaWS.class);\r
302 \r
303                 /* Get the list of available presets */\r
304                 PresetManager presetman = msaws.getPresets();\r
305 \r
306                 /* Get the Preset object by preset name */\r
307                 Preset preset = presetman\r
308                                 .getPresetByName(&quot;Disable gap weighting (Speed-oriented)&quot;);\r
309 \r
310                 /*\r
311                  * Load sequences in FASTA format from the file You can use something\r
312                  * like new FileInputStream(&lt;filename&gt;) to load sequence from the file\r
313                  */\r
314                 List&lt;FastaSequence&gt; fastalist = SequenceUtil\r
315                                 .readFasta(new ByteArrayInputStream(input.getBytes()));\r
316 \r
317                 /*\r
318                  * Submit loaded sequences for an alignment using preset. The job\r
319                  * identifier is returned by this method, you can retrieve the results\r
320                  * with it sometime later.\r
321                  */\r
322                 String jobId = msaws.presetAlign(fastalist, preset);\r
323 \r
324                 /* This method will block for the duration of the calculation */\r
325                 Alignment alignment = msaws.getResult(jobId);\r
326 \r
327                 /*\r
328                  * This is a better way of obtaining results, it does not involve\r
329                  * holding the connection open for the duration of the calculation,\r
330                  * Besides, as the University of Dundee public server will reset the\r
331                  * connection after 10 minutes of idling, this is the only way to obtain\r
332                  * the results of long running task from our public server.\r
333                  */\r
334                 // while (msaws.getJobStatus(jobId) != JobStatus.FINISHED) {\r
335                 // Thread.sleep(1000); // wait a second, then recheck the status\r
336                 // }\r
337 \r
338                 /* Output the alignment to standard out */\r
339                 System.out.println(alignment);\r
340 \r
341                 // Alternatively, you can record retrieved alignment into the file in\r
342                 // ClustalW format\r
343 \r
344                 // ClustalAlignmentUtil.writeClustalAlignment(new FileOutputStream(\r
345                 // &quot;output.al&quot;), alignment);\r
346 \r
347         }\r
348 }\r
349 </pre>\r
350 For a more detailed description of all available types and their functions please refer to the <a href="dm_javadoc/index.html">data model javadoc</a>.\r
351 <h3><a name="buildart" id="buildart"></a>Building web services artifacts</h3>\r
352 <p>JABAWS are the standard <a href="http://jax-ws.java.net/">JAX-WS</a> SOAP web services, which are <a href="http://www.ws-i.org/">WS-I</a> basic   profile compatible. This means that you could use whatever tool your language has to work with web services. Below is how you can generate portable artifacts to work with JABAWS from Java. However,  if programming in Java we recommend using our  client library as it provides a handful of useful methods in addition to plain data types. </p>\r
353 <p class="code">wsimport -keep http://www.compbio.dundee.ac.uk/jabaws/ClustalWS?wsdl</p>\r
354 </div>\r
355 \r
356 <!-- content end-->\r
357 <div id="copyright">Last update: 16 September 2011<br />\r
358  Peter Troshin, Jim Procter and Geoff Barton, The Barton Group, University of\r
359 Dundee, UK</div>\r
360 </div>\r
361 \r
362 <!-- wrapper end-->\r
363 </div>\r
364 <!-- page end-->\r
365 \r
366 <!-- Google analitics -->\r
367 <script type="text/javascript">\r
368 var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");\r
369 document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));\r
370 </script>\r
371 <script type="text/javascript">\r
372 try{\r
373 var pageTracker = _gat._getTracker("UA-5356328-1");\r
374 pageTracker._trackPageview();\r
375 } catch(err) {}\r
376 </script>\r
377 </body>\r
378 </html>\r
379 \r