JAL-2136 Introduced DynamicData model, modified AnnotionFile to store Phyre meta...
[jalview.git] / src / jalview / api / SiftsClientI.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.api;
22
23 import jalview.datamodel.SequenceI;
24 import jalview.structure.StructureMappingClient.StructureMappingException;
25 import jalview.ws.sifts.SiftsException;
26 import jalview.xml.binding.sifts.Entry.Entity;
27
28 import java.util.HashMap;
29 import java.util.HashSet;
30
31 // JBPComment: this isn't a top-level Jalview API - should be in its own package api
32
33 public interface SiftsClientI
34 {
35   /**
36    * Get the DB Accession Id for the SIFTs Entry
37    * 
38    * @return
39    */
40   public String getDbAccessionId();
41
42   /**
43    * Get DB Coordinate system for the SIFTs Entry
44    * 
45    * @return
46    */
47   public String getDbCoordSys();
48
49   /**
50    * Get DB Source for the SIFTs Entry
51    * 
52    * @return
53    */
54   public String getDbSource();
55
56   /**
57    * Get DB version for the SIFTs Entry
58    * 
59    * @return
60    */
61   public String getDbVersion();
62
63   /**
64    * Get Number of Entities available in the SIFTs Entry
65    * 
66    * @return
67    */
68   public int getEntityCount();
69
70   /**
71    * Get a unique Entity by its Id
72    * 
73    * @param id
74    *          ID of the entity to fetch
75    * @return Entity
76    * @throws Exception
77    */
78   public Entity getEntityById(String id) throws SiftsException;
79
80   /**
81    * Get all accession Ids available in the current SIFTs entry
82    * 
83    * @return a unique set of discovered accession strings
84    */
85   public HashSet<String> getAllMappingAccession();
86
87   /**
88    * Check if the accessionId is available in current SIFTs Entry
89    * 
90    * @param accessionId
91    * @return
92    */
93   public boolean isAccessionMatched(String accessionId);
94
95
96
97   /**
98    * Get residue by residue mapping for a given Sequence and SIFTs entity
99    * 
100    * @param entityId
101    *          Id of the target entity in the SIFTs entry
102    * @param seq
103    *          SequenceI
104    * @return generated mapping
105    * @throws Exception
106    */
107   public HashMap<Integer, int[]> getGreedyMapping(String entityId,
108           SequenceI seq, java.io.PrintStream os) throws SiftsException,
109           StructureMappingException;
110 }