The archetypal Multiple Sequence Alignment Web Service
[jalview.git] / src / vamsas / IMsaWS.java
1 /* MsaWS.java
2  * The basic Multiple Sequence Alignment interface
3  * J.B. Procter Feb 2004
4  * @header
5  */
6
7 package vamsas;
8
9 import vamsas.objects.simple.SequenceSet;
10 import vamsas.objects.simple.Alignment;
11 import vamsas.objects.simple.MsaResult;
12 import vamsas.objects.simple.WsJobId;
13
14
15 public interface IMsaWS {
16     public WsJobId align(SequenceSet s) throws Exception;
17     public Alignment getalign(String job_id) throws Exception;
18     public MsaResult getResult(String job_id) throws Exception;
19     public WsJobId cancel(String jobId) throws Exception;
20 }
21