| 1 |
|
package jalview.ws.api; |
| 2 |
|
|
| 3 |
|
import jalview.api.FeatureColourI; |
| 4 |
|
import jalview.datamodel.AlignmentAnnotation; |
| 5 |
|
import jalview.datamodel.SequenceI; |
| 6 |
|
import jalview.datamodel.features.FeatureMatcherSetI; |
| 7 |
|
import jalview.ws.params.ArgumentI; |
| 8 |
|
import jalview.ws.params.WsParamSetI; |
| 9 |
|
|
| 10 |
|
import java.util.List; |
| 11 |
|
import java.util.Map; |
| 12 |
|
|
| |
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 0 |
Complexity Density: - |
|
| 13 |
|
public interface SequenceAnnotationServiceI extends JalviewWebServiceI |
| 14 |
|
{ |
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
@param |
| 22 |
|
@param |
| 23 |
|
@param |
| 24 |
|
@return |
| 25 |
|
@throws |
| 26 |
|
|
| 27 |
|
JobId submitToService(List<SequenceI> seqs, WsParamSetI preset, |
| 28 |
|
List<ArgumentI> paramset) throws Throwable; |
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
@param |
| 34 |
|
@param |
| 35 |
|
|
| 36 |
|
|
| 37 |
|
@param |
| 38 |
|
|
| 39 |
|
|
| 40 |
|
@param |
| 41 |
|
|
| 42 |
|
@return |
| 43 |
|
|
| 44 |
|
@throws |
| 45 |
|
|
| 46 |
|
List<AlignmentAnnotation> getAnnotationResult(JobId job, |
| 47 |
|
List<SequenceI> seqs, Map<String, FeatureColourI> featureColours, |
| 48 |
|
Map<String, FeatureMatcherSetI> featureFilters) throws Throwable; |
| 49 |
|
|
| 50 |
|
|
| 51 |
|
} |