return WSUtil.getAnnotation(jobId, log);\r
}\r
\r
+ @SuppressWarnings("unchecked")\r
public String analize(List<FastaSequence> sequences)\r
throws UnsupportedRuntimeException, LimitExceededException,\r
JobSubmissionException {\r
WSUtil.validateFastaInput(sequences);\r
ConfiguredExecutable<T> confIUPred = init(sequences);\r
- return WSUtil.analize(sequences, confIUPred, log, "analize",\r
- getLimit(""));\r
+ return WSUtil.analize(sequences, confIUPred, log, "analize", getLimit(""));\r
}\r
\r
+ @SuppressWarnings("unchecked")\r
public String customAnalize(List<FastaSequence> sequences,\r
List<Option<T>> options) throws UnsupportedRuntimeException,\r
LimitExceededException, JobSubmissionException,\r
List<String> params = WSUtil.getCommands(options,\r
AACon.KEY_VALUE_SEPARATOR);\r
confAACon.addParameters(params);\r
- return WSUtil.analize(sequences, confAACon, log, "customAnalize",\r
- getLimit(""));\r
+ return WSUtil.analize(sequences, confAACon, log, "customAnalize", getLimit(""));\r
}\r
\r
public String presetAnalize(List<FastaSequence> sequences, Preset<T> preset)\r
if (preset == null) {\r
throw new WrongParameterException("Preset must be provided!");\r
}\r
+ @SuppressWarnings("unchecked")\r
ConfiguredExecutable<T> confAAcon = init(sequences);\r
confAAcon.addParameters(preset.getOptions());\r
+ @SuppressWarnings("unchecked")\r
Limit<T> limit = getLimit(preset.getName());\r
return WSUtil\r
.analize(sequences, confAAcon, log, "presetAnalize", limit);\r
}\r
-\r
}\r