Coverage Report - uk.ac.ebi.ep.biomart.adapter.IBiomartAdapter
 
Classes in this File Line Coverage Branch Coverage Complexity
IBiomartAdapter
N/A
N/A
1
 
 1  
 package uk.ac.ebi.ep.biomart.adapter;
 2  
 
 3  
 import java.util.List;
 4  
 import uk.ac.ebi.ep.enzyme.model.EnzymeReaction;
 5  
 
 6  
 /**
 7  
  *
 8  
  * @since   1.0
 9  
  * @version $LastChangedRevision: 296 $ <br/>
 10  
  *          $LastChangedDate: 2011-09-06 20:01:30 +0200 (Tue, 06 Sep 2011) $ <br/>
 11  
  *          $Author: hongcao $
 12  
  * @author  $Author: hongcao $
 13  
  */
 14  
 public interface IBiomartAdapter {
 15  
 
 16  
 //********************************* VARIABLES ********************************//
 17  
 
 18  
 
 19  
 //******************************** CONSTRUCTORS ******************************//
 20  
 
 21  
 
 22  
 //****************************** GETTER & SETTER *****************************//
 23  
 
 24  
 
 25  
 //********************************** METHODS *********************************//
 26  
 
 27  
     public List<String> getPathwaysByReactionId(String reactionStableId) throws BiomartFetchDataException;
 28  
     public List<EnzymeReaction> getReactionsByUniprotAccession(String accession) throws BiomartFetchDataException;
 29  
 }