1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
/* Copyright (c) 2011 Peter Troshin
*
* JAva Bioinformatics Analysis Web Services (JABAWS) @version: 2.0
*
* This library is free software; you can redistribute it and/or modify it under the terms of the
* Apache License version 2 as published by the Apache Software Foundation
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache
* License for more details.
*
* A copy of the license is in apache_license.txt. It is also available here:
* @see: http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Any republication or derived work distributed in source code form
* must include this copyright and license notice.
*/
package compbio.ws.server;
import java.security.InvalidParameterException;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.apache.log4j.Logger;
import compbio.data.sequence.FastaSequence;
import compbio.data.sequence.ScoreManager;
import compbio.runner.RunnerUtil;
import compbio.engine.AsyncExecutor;
import compbio.engine.Configurator;
import compbio.engine.ProgressGetter;
import compbio.engine.client.ConfiguredExecutable;
import compbio.engine.client.EngineUtil;
import compbio.metadata.ChunkHolder;
import compbio.metadata.JobStatus;
import compbio.metadata.JobSubmissionException;
import compbio.metadata.Limit;
import compbio.metadata.LimitExceededException;
import compbio.metadata.Option;
import compbio.metadata.ResultNotAvailableException;
import compbio.ws.client.Services;
import compbio.ws.client.ServicesUtil;
public final class WSUtil {
public static final void validateJobId(String jobId)
throws InvalidParameterException {
if (!EngineUtil.isValidJobId(jobId)) {
throw new InvalidParameterException("JobId is not provided or cannot be recognised! Given value: " + jobId);
}
}
public static final void validateFastaInput(List<FastaSequence> sequences)
throws JobSubmissionException {
if (sequences == null || sequences.isEmpty()) {
throw new JobSubmissionException("List of fasta sequences required but not provided! ");
}
Set<String> names = new HashSet<String>();
for (FastaSequence fs : sequences) {
boolean unique = names.add(fs.getId());
if (!unique) {
throw new JobSubmissionException(
"Input sequences must have unique names! \nSequence " + fs.getId() + " is a duplicate!");
}
if (fs.getLength() == 0) {
throw new JobSubmissionException("Sequence must not be empty! Sequence: " + fs.getId() + " was empty");
}
}
}
public static JobStatus getJobStatus(String jobId) {
AsyncExecutor asyncEngine = Configurator.getAsyncEngine(jobId);
return asyncEngine.getJobStatus(jobId);
}
public static ChunkHolder pullFile(String file, long position) {
return ProgressGetter.pull(file, position);
}
public static byte getProgress(String jobId) {
throw new UnsupportedOperationException();
}
public static AsyncExecutor getEngine(ConfiguredExecutable<?> confClustal) {
assert confClustal != null;
return Configurator.getAsyncEngine(confClustal);
}
public static boolean cancelJob(String jobId) {
AsyncExecutor asyncEngine = Configurator.getAsyncEngine(jobId);
return asyncEngine.cancelJob(jobId);
}
public static <T> String align(List<FastaSequence> sequences,
ConfiguredExecutable<T> confExec, Logger logger,
String callingMethod, Limit<T> limit)
throws LimitExceededException, JobSubmissionException {
if (limit != null && limit.isExceeded(sequences)) {
throw LimitExceededException.newLimitExceeded(limit, sequences);
}
RunnerUtil.writeInput(sequences, confExec);
AsyncExecutor engine = Configurator.getAsyncEngine(confExec);
String jobId = engine.submitJob(confExec);
reportUsage(confExec, logger);
return jobId;
}
static <T> void reportUsage(ConfiguredExecutable<T> confExec, Logger logger) {
if (GAUtils.IS_GA_ENABLED) {
Services service = ServicesUtil.getServiceByRunner(confExec.getExecutable().getClass());
GAUtils.reportUsage(service);
logger.info("Reporting GA usage for " + service);
}
}
public static <T> String analize(List<FastaSequence> sequences,
ConfiguredExecutable<T> confExec, Logger log, String method,
Limit<T> limit) throws JobSubmissionException {
if (limit != null && limit.isExceeded(sequences)) {
throw LimitExceededException.newLimitExceeded(limit, sequences);
}
RunnerUtil.writeInput(sequences, confExec);
AsyncExecutor engine = Configurator.getAsyncEngine(confExec);
String jobId = engine.submitJob(confExec);
reportUsage(confExec, log);
return jobId;
}
// Same as analize(...) but RNAalifold takes clustal input not fasta
// An if condition in the above method might be a better solution but
// you need a way of finding out the type of confExec at runtime
public static <T> String fold(List<FastaSequence> sequences,
ConfiguredExecutable<T> confExec, Logger log, String method,
Limit<T> limit) throws JobSubmissionException {
if (limit != null && limit.isExceeded(sequences)) {
throw LimitExceededException.newLimitExceeded(limit, sequences);
}
RunnerUtil.writeClustalInput(sequences, confExec, '-');
AsyncExecutor engine = Configurator.getAsyncEngine(confExec);
String jobId = engine.submitJob(confExec);
reportUsage(confExec, log);
return jobId;
}
/*
* TODO Rewrite using purely CommandBuilder. This is breaking encapsulation
*/
public static final <T> List<String> getCommands(List<Option<T>> options,
String keyValueSeparator) {
List<String> oList = new ArrayList<String>();
for (Option<T> o : options) {
oList.add(o.toCommand(keyValueSeparator));
}
return oList;
}
public static void validateAAConInput(List<FastaSequence> sequences)
throws JobSubmissionException {
validateFastaInput(sequences);
int len = 0;
for (FastaSequence fs : sequences) {
if (len == 0) {
len = fs.getLength();
continue;
}
if (fs.getLength() != len) {
throw new JobSubmissionException(
"All sequences must be of the same length. Please align the sequences " +
" prior to submission! The first sequence length is : " + len +
" but the sequence '" + fs.getId() + "' length is " + fs.getLength());
}
}
}
// public static void validateJpredInput(List<FastaSequence> sequences)
// throws JobSubmissionException {
// validateFastaInput(sequences);
// int len = 0;
// for (FastaSequence fs : sequences) {
// if (len == 0) {
// len = fs.getLength();
// continue;
// }
// if (fs.getLength() != len) {
// System.out.println("FASTA rec: id = " + fs.getId() + ": seq = " + fs.getSequence());
// throw new JobSubmissionException(
// "All sequences must be of the same length. Please align the sequences " +
// " prior to submission! The first sequence length is : " + len +
// " but the sequence '" + fs.getId() + "' length is " + fs.getLength());
// }
// }
// }
public static <T> ScoreManager getAnnotation(String jobId, Logger log)
throws ResultNotAvailableException {
WSUtil.validateJobId(jobId);
AsyncExecutor asyncEngine = Configurator.getAsyncEngine(jobId);
ConfiguredExecutable<T> aacon = (ConfiguredExecutable<T>) asyncEngine.getResults(jobId);
ScoreManager mas = aacon.getResults();
log.trace(jobId + " getConservation : " + mas);
return mas;
}
}
|