2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
23 import jalview.datamodel.SequenceI;
24 import jalview.structure.StructureMapping;
25 import jalview.ws.sifts.MappingOutputPojo;
26 import jalview.ws.sifts.SiftsException;
27 import jalview.xml.binding.sifts.Entry.Entity;
29 import java.util.HashMap;
30 import java.util.HashSet;
32 // JBPComment: this isn't a top-level Jalview API - should be in its own package api
34 public interface SiftsClientI
37 * Get the DB Accession Id for the SIFTs Entry
41 public String getDbAccessionId();
44 * Get DB Coordinate system for the SIFTs Entry
48 public String getDbCoordSys();
52 * Get DB Source for the SIFTs Entry
56 public String getDbSource();
59 * Get DB version for the SIFTs Entry
63 public String getDbVersion();
66 * Get Number of Entities available in the SIFTs Entry
70 public int getEntityCount();
73 * Get a unique Entity by its Id
76 * ID of the entity to fetch
80 public Entity getEntityById(String id) throws SiftsException;
83 * Get all accession Ids available in the current SIFTs entry
85 * @return a unique set of discovered accession strings
87 public HashSet<String> getAllMappingAccession();
90 * Check if the accessionId is available in current SIFTs Entry
95 public boolean isAccessionMatched(String accessionId);
101 * @return Sequence<->Structure mapping as int[][]
102 * @throws SiftsException
104 public StringBuffer getMappingOutput(MappingOutputPojo mop)
105 throws SiftsException;
110 * sequence to generate mapping against the structure
112 * PDB file for the mapping
114 * the chain of the entry to use for mapping
115 * @return StructureMapping
116 * @throws SiftsException
118 public StructureMapping getSiftsStructureMapping(SequenceI seq,
119 String pdbFile, String chain) throws SiftsException;
122 * Get residue by residue mapping for a given Sequence and SIFTs entity
125 * Id of the target entity in the SIFTs entry
128 * @return generated mapping
131 public HashMap<Integer, int[]> getGreedyMapping(String entityId,
133 java.io.PrintStream os) throws SiftsException;