2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3 * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
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 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
18 package jalview.ws.dbsources;
20 import jalview.datamodel.Alignment;
21 import jalview.datamodel.DBRefEntry;
22 import jalview.datamodel.DBRefSource;
23 import jalview.datamodel.SequenceI;
25 import java.util.Vector;
27 import MCview.PDBChain;
28 import MCview.PDBfile;
30 import com.stevesoft.pat.Regex;
32 import jalview.datamodel.AlignmentI;
33 import jalview.ws.ebi.EBIFetchClient;
34 import jalview.ws.seqfetcher.DbSourceProxy;
40 public class Pdb extends EbiFileRetrievedProxy implements DbSourceProxy
45 addDbSourceProperty(DBRefSource.PROTSEQDB);
51 * @see jalview.ws.DbSourceProxy#getAccessionSeparator()
53 public String getAccessionSeparator()
55 // TODO Auto-generated method stub
62 * @see jalview.ws.DbSourceProxy#getAccessionValidator()
64 public Regex getAccessionValidator()
66 return new Regex("([1-9][0-9A-Za-z]{3}):?([ _A-Za-z0-9]?)");
72 * @see jalview.ws.DbSourceProxy#getDbSource()
74 public String getDbSource()
76 return DBRefSource.PDB;
82 * @see jalview.ws.DbSourceProxy#getDbVersion()
84 public String getDbVersion()
92 * @see jalview.ws.DbSourceProxy#getSequenceRecords(java.lang.String[])
94 public AlignmentI getSequenceRecords(String queries) throws Exception
97 Vector result = new Vector();
100 if (queries.indexOf(":") > -1)
102 chain = queries.substring(queries.indexOf(":") + 1);
103 id = queries.substring(0, queries.indexOf(":"));
109 if (queries.length() > 4 && chain == null)
111 chain = queries.substring(4, 5);
112 id = queries.substring(0, 4);
114 if (!isValidReference(id))
116 System.err.println("Ignoring invalid pdb query: '" + id + "'");
120 EBIFetchClient ebi = new EBIFetchClient();
121 file = ebi.fetchDataAsFile("pdb:" + id, "pdb", "raw").getAbsolutePath();
130 PDBfile pdbfile = new PDBfile(file,
131 jalview.io.AppletFormatAdapter.FILE);
132 for (int i = 0; i < pdbfile.chains.size(); i++)
135 || ((PDBChain) pdbfile.chains.elementAt(i)).id
136 .toUpperCase().equals(chain))
138 PDBChain pdbchain = (PDBChain) pdbfile.chains.elementAt(i);
139 // Get the Chain's Sequence - who's dataset includes any special
140 // features added from the PDB file
141 SequenceI sq = pdbchain.sequence;
142 // Specially formatted name for the PDB chain sequences retrieved from
144 sq.setName(jalview.datamodel.DBRefSource.PDB + "|" + id + "|"
146 // Might need to add more metadata to the PDBEntry object
149 * PDBEntry entry = new PDBEntry(); // Construct the PDBEntry
150 * entry.setId(id); if (entry.getProperty() == null)
151 * entry.setProperty(new Hashtable());
152 * entry.getProperty().put("chains", pdbchain.id + "=" + sq.getStart()
153 * + "-" + sq.getEnd()); sq.getDatasetSequence().addPDBId(entry);
156 // We make a DBRefEtntry because we have obtained the PDB file from a
158 // JBPNote - PDB DBRefEntry should also carry the chain and mapping
160 DBRefEntry dbentry = new DBRefEntry(getDbSource(),
161 getDbVersion(), id + pdbchain.id);
162 sq.addDBRef(dbentry);
163 // and add seuqence to the retrieved set
164 result.addElement(sq.deriveSequence());
168 if (result.size() < 1)
170 throw new Exception("No PDB Records for " + id + " chain "
171 + ((chain == null) ? "' '" : chain));
173 } catch (Exception ex) // Problem parsing PDB file
179 SequenceI[] results = new SequenceI[result.size()];
180 for (int i = 0, j = result.size(); i < j; i++)
182 results[i] = (SequenceI) result.elementAt(i);
183 result.setElementAt(null, i);
185 return new Alignment(results);
191 * @see jalview.ws.DbSourceProxy#isValidReference(java.lang.String)
193 public boolean isValidReference(String accession)
195 Regex r = getAccessionValidator();
196 return r.search(accession.trim());
200 * obtain human glyoxalase chain A sequence
202 public String getTestQuery()
207 public String getDbName()
209 return "PDB"; // getDbSource();