Change header template for a new version
[jabaws.git] / webservices / compbio / ws / server / IUPredWS.java
1 /* Copyright (c) 2011 Peter Troshin\r
2  *  \r
3  *  JAva Bioinformatics Analysis Web Services (JABAWS) @version: 2.0     \r
4  * \r
5  *  This library is free software; you can redistribute it and/or modify it under the terms of the\r
6  *  Apache License version 2 as published by the Apache Software Foundation\r
7  * \r
8  *  This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without\r
9  *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache \r
10  *  License for more details.\r
11  * \r
12  *  A copy of the license is in apache_license.txt. It is also available here:\r
13  * @see: http://www.apache.org/licenses/LICENSE-2.0.txt\r
14  * \r
15  * Any republication or derived work distributed in source code form\r
16  * must include this copyright and license notice.\r
17  */\r
18 package compbio.ws.server;\r
19 \r
20 import java.util.List;\r
21 \r
22 import javax.jws.WebService;\r
23 \r
24 import org.apache.log4j.Logger;\r
25 \r
26 import compbio.data.msa.JABAService;\r
27 import compbio.data.msa.SequenceAnnotation;\r
28 import compbio.data.sequence.FastaSequence;\r
29 import compbio.metadata.JobSubmissionException;\r
30 import compbio.metadata.LimitExceededException;\r
31 import compbio.metadata.Preset;\r
32 import compbio.metadata.UnsupportedRuntimeException;\r
33 import compbio.metadata.WrongParameterException;\r
34 import compbio.runner.disorder.IUPred;\r
35 \r
36 @WebService(endpointInterface = "compbio.data.msa.SequenceAnnotation", targetNamespace = JABAService.V2_SERVICE_NAMESPACE, serviceName = "IUPredWS")\r
37 public class IUPredWS extends SequenceAnnotationService<IUPred>\r
38                 implements\r
39                         SequenceAnnotation<IUPred> {\r
40 \r
41         private static Logger log = Logger.getLogger(IUPredWS.class);\r
42 \r
43         public IUPredWS() {\r
44                 super(new IUPred(), log);\r
45         }\r
46 \r
47         /*\r
48          * No presets are supported, thus the result of this call will be as simple\r
49          * call to analize without parameters\r
50          */\r
51         @Override\r
52         public String presetAnalize(List<FastaSequence> sequences,\r
53                         Preset<IUPred> preset) throws UnsupportedRuntimeException,\r
54                         LimitExceededException, JobSubmissionException,\r
55                         WrongParameterException {\r
56 \r
57                 return analize(sequences);\r
58         }\r
59 \r
60 }\r