Javadoc fixes
[jabaws.git] / runner / compbio / runner / msa / Muscle.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 \r
19 package compbio.runner.msa;\r
20 \r
21 import java.io.FileNotFoundException;\r
22 import java.io.IOException;\r
23 import java.util.Arrays;\r
24 import java.util.List;\r
25 \r
26 import javax.xml.bind.annotation.XmlTransient;\r
27 \r
28 import org.apache.log4j.Logger;\r
29 \r
30 import compbio.data.sequence.Alignment;\r
31 import compbio.data.sequence.UnknownFileFormatException;\r
32 import compbio.engine.client.SkeletalExecutable;\r
33 import compbio.metadata.ResultNotAvailableException;\r
34 import compbio.runner.Util;\r
35 \r
36 public class Muscle extends SkeletalExecutable<Muscle> {\r
37 \r
38         /*\r
39          * Tell JAXB to ignore this while marshalling\r
40          */\r
41         @XmlTransient\r
42         private static Logger log = Logger.getLogger(Muscle.class);\r
43 \r
44         private static final String EXEC_STAT_FILE = "stat.log";\r
45 \r
46         public static final String KEY_VALUE_SEPARATOR = Util.SPACE;\r
47 \r
48         /**\r
49          * Default options are\r
50          * \r
51          * -clwstrict - write output in clustal format\r
52          * \r
53          */\r
54         public Muscle() {\r
55                 /*\r
56                  * The –quiet command-line option disables writing progress messages to\r
57                  * standard error. If the –verbose command-line option is specified, a\r
58                  * progress message will be written to the log file when each iteration\r
59                  * completes. So –quiet and –verbose are not contradictory."-quiet",\r
60                  * "-verbose"\r
61                  */\r
62                 addParameters(Arrays.asList("-clwstrict", "-quiet", "-verbose",\r
63                                 "-nocore"));\r
64                 cbuilder.setParam("-log", EXEC_STAT_FILE);\r
65         }\r
66 \r
67         @Override\r
68         public Muscle setOutput(String outFile) {\r
69                 super.setOutput(outFile);\r
70                 cbuilder.setParam("-out", outFile);\r
71                 return this;\r
72         }\r
73 \r
74         @Override\r
75         public Muscle setInput(String inFile) {\r
76                 super.setInput(inFile);\r
77                 cbuilder.setParam("-in", inFile);\r
78                 return this;\r
79         }\r
80 \r
81         @SuppressWarnings("unchecked")\r
82         @Override\r
83         public Alignment getResults(String workDirectory)\r
84                         throws ResultNotAvailableException {\r
85                 try {\r
86                         return Util.readClustalFile(workDirectory, getOutput());\r
87                 } catch (FileNotFoundException e) {\r
88                         log.error(e.getMessage(), e.getCause());\r
89                         throw new ResultNotAvailableException(e);\r
90                 } catch (IOException e) {\r
91                         log.error(e.getMessage(), e.getCause());\r
92                         throw new ResultNotAvailableException(e);\r
93                 } catch (UnknownFileFormatException e) {\r
94                         log.error(e.getMessage(), e.getCause());\r
95                         throw new ResultNotAvailableException(e);\r
96                 } catch (NullPointerException e) {\r
97                         log.error(e.getMessage(), e.getCause());\r
98                         throw new ResultNotAvailableException(e);\r
99                 }\r
100         }\r
101 \r
102         @Override\r
103         public List<String> getCreatedFiles() {\r
104                 return Arrays.asList(getOutput(), EXEC_STAT_FILE);\r
105         }\r
106 \r
107         public static String getStatFile() {\r
108                 return EXEC_STAT_FILE;\r
109         }\r
110 \r
111         @SuppressWarnings("unchecked")\r
112         @Override\r
113         public Class<Muscle> getType() {\r
114                 return (Class<Muscle>) this.getClass();\r
115         }\r
116 \r
117 }\r