Clover icon

Coverage Report

  1. Project Clover database Wed Dec 3 2025 17:03:17 GMT
  2. Package jalview.ws.api

File MsaResultI.java

 

Code metrics

0
0
0
1
13
9
0
-
-
0
-

Classes

Class Line # Actions
MsaResultI 9 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package jalview.ws.api;
2   
3    import jalview.datamodel.AlignmentI;
4    import jalview.ws.params.InvalidArgumentException;
5   
6    import java.io.IOError;
7    import java.rmi.ServerError;
8   
 
9    public interface MsaResultI
10    {
11    public AlignmentI getAlignmentFor(JobId jobId)
12    throws InvalidArgumentException, ServerError, IOError;
13    }