Clover icon

jalviewX

  1. Project Clover database Wed Oct 31 2018 15:13:58 GMT
  2. Package jalview.ws.dbsources

File Pdb.java

 

Coverage histogram

../../../img/srcFileCovDistChart1.png
53% of files have more coverage

Code metrics

24
59
11
1
297
174
31
0.53
5.36
11
2.82

Classes

Class Line # Actions
Pdb 51 59 31 88
0.063829796.4%
 

Contributing tests

This file is covered by 79 tests. .

Source view

1   
2    /*
3    * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
4    * Copyright (C) $$Year-Rel$$ The Jalview Authors
5    *
6    * This file is part of Jalview.
7    *
8    * Jalview is free software: you can redistribute it and/or
9    * modify it under the terms of the GNU General Public License
10    * as published by the Free Software Foundation, either version 3
11    * of the License, or (at your option) any later version.
12    *
13    * Jalview is distributed in the hope that it will be useful, but
14    * WITHOUT ANY WARRANTY; without even the implied warranty
15    * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16    * PURPOSE. See the GNU General Public License for more details.
17    *
18    * You should have received a copy of the GNU General Public License
19    * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
20    * The Jalview Authors are detailed in the 'AUTHORS' file.
21    */
22    package jalview.ws.dbsources;
23   
24    import jalview.api.FeatureSettingsModelI;
25    import jalview.datamodel.AlignmentAnnotation;
26    import jalview.datamodel.AlignmentI;
27    import jalview.datamodel.DBRefEntry;
28    import jalview.datamodel.DBRefSource;
29    import jalview.datamodel.PDBEntry;
30    import jalview.datamodel.PDBEntry.Type;
31    import jalview.datamodel.SequenceI;
32    import jalview.io.DataSourceType;
33    import jalview.io.FileFormat;
34    import jalview.io.FileFormatI;
35    import jalview.io.FormatAdapter;
36    import jalview.io.PDBFeatureSettings;
37    import jalview.structure.StructureImportSettings;
38    import jalview.util.MessageManager;
39    import jalview.ws.ebi.EBIFetchClient;
40   
41    import java.io.File;
42    import java.util.ArrayList;
43    import java.util.List;
44   
45    import com.stevesoft.pat.Regex;
46   
47    /**
48    * @author JimP
49    *
50    */
 
51    public class Pdb extends EbiFileRetrievedProxy
52    {
53    private static final String SEPARATOR = "|";
54   
55    private static final String COLON = ":";
56   
57    private static final int PDB_ID_LENGTH = 4;
58   
 
59  9 toggle public Pdb()
60    {
61  9 super();
62    }
63   
64    /*
65    * (non-Javadoc)
66    *
67    * @see jalview.ws.DbSourceProxy#getAccessionSeparator()
68    */
 
69  0 toggle @Override
70    public String getAccessionSeparator()
71    {
72  0 return null;
73    }
74   
75    /*
76    * (non-Javadoc)
77    *
78    * @see jalview.ws.DbSourceProxy#getAccessionValidator()
79    */
 
80  0 toggle @Override
81    public Regex getAccessionValidator()
82    {
83  0 return new Regex("([1-9][0-9A-Za-z]{3}):?([ _A-Za-z0-9]?)");
84    }
85   
86    /*
87    * (non-Javadoc)
88    *
89    * @see jalview.ws.DbSourceProxy#getDbSource()
90    */
 
91  2216 toggle @Override
92    public String getDbSource()
93    {
94  2216 return DBRefSource.PDB;
95    }
96   
97    /*
98    * (non-Javadoc)
99    *
100    * @see jalview.ws.DbSourceProxy#getDbVersion()
101    */
 
102  0 toggle @Override
103    public String getDbVersion()
104    {
105  0 return "0";
106    }
107   
108    /*
109    * (non-Javadoc)
110    *
111    * @see jalview.ws.DbSourceProxy#getSequenceRecords(java.lang.String[])
112    */
 
113  0 toggle @Override
114    public AlignmentI getSequenceRecords(String queries) throws Exception
115    {
116  0 AlignmentI pdbAlignment = null;
117  0 String chain = null;
118  0 String id = null;
119  0 if (queries.indexOf(COLON) > -1)
120    {
121  0 chain = queries.substring(queries.indexOf(COLON) + 1);
122  0 id = queries.substring(0, queries.indexOf(COLON));
123    }
124    else
125    {
126  0 id = queries;
127    }
128   
129    /*
130    * extract chain code if it is appended to the id and we
131    * don't already have one
132    */
133  0 if (queries.length() > PDB_ID_LENGTH && chain == null)
134    {
135  0 chain = queries.substring(PDB_ID_LENGTH, PDB_ID_LENGTH + 1);
136  0 id = queries.substring(0, PDB_ID_LENGTH);
137    }
138   
139  0 if (!isValidReference(id))
140    {
141  0 System.err.println("Ignoring invalid pdb query: '" + id + "'");
142  0 stopQuery();
143  0 return null;
144    }
145   
146    /*
147    * ensure that an mmCIF format structure file is saved with extension.cif,
148    * because the Chimera "open" command recognises this extension
149    */
150  0 Type pdbFileFormat = StructureImportSettings
151    .getDefaultStructureFileFormat();
152  0 String ext = pdbFileFormat.getExtension();
153  0 String fetchFormat = pdbFileFormat.getFormat();
154   
155  0 EBIFetchClient ebi = new EBIFetchClient();
156  0 File tmpFile = ebi.fetchDataAsFile("pdb:" + id, fetchFormat, ext);
157  0 file = tmpFile.getAbsolutePath();
158  0 stopQuery();
159  0 if (file == null)
160    {
161  0 return null;
162    }
163  0 try
164    {
165    // todo get rid of Type and use FileFormatI instead?
166  0 FileFormatI fileFormat = (pdbFileFormat == Type.PDB) ? FileFormat.PDB
167    : FileFormat.MMCif;
168  0 pdbAlignment = new FormatAdapter().readFile(tmpFile, DataSourceType.FILE,
169    fileFormat);
170  0 if (pdbAlignment != null)
171    {
172  0 List<SequenceI> toremove = new ArrayList<SequenceI>();
173  0 for (SequenceI pdbcs : pdbAlignment.getSequences())
174    {
175  0 String chid = null;
176    // Mapping map=null;
177  0 for (PDBEntry pid : pdbcs.getAllPDBEntries())
178    {
179  0 if (pid.getFile() == file)
180    {
181  0 chid = pid.getChainCode();
182   
183    }
184    }
185  0 if (chain == null || (chid != null && (chid.equals(chain)
186    || chid.trim().equals(chain.trim())
187    || (chain.trim().length() == 0 && chid.equals("_")))))
188    {
189    // FIXME seems to result in 'PDB|1QIP|1qip|A' - 1QIP is redundant.
190    // TODO: suggest simplify naming to 1qip|A as default name defined
191  0 pdbcs.setName(jalview.datamodel.DBRefSource.PDB + SEPARATOR + id
192    + SEPARATOR + pdbcs.getName());
193    // Might need to add more metadata to the PDBEntry object
194    // like below
195    /*
196    * PDBEntry entry = new PDBEntry(); // Construct the PDBEntry
197    * entry.setId(id); if (entry.getProperty() == null)
198    * entry.setProperty(new Hashtable());
199    * entry.getProperty().put("chains", pdbchain.id + "=" +
200    * sq.getStart() + "-" + sq.getEnd());
201    * sq.getDatasetSequence().addPDBId(entry);
202    */
203    // Add PDB DB Refs
204    // We make a DBRefEtntry because we have obtained the PDB file from
205    // a
206    // verifiable source
207    // JBPNote - PDB DBRefEntry should also carry the chain and mapping
208    // information
209  0 DBRefEntry dbentry = new DBRefEntry(getDbSource(),
210  0 getDbVersion(), (chid == null ? id : id + chid));
211    // dbentry.setMap()
212  0 pdbcs.addDBRef(dbentry);
213    }
214    else
215    {
216    // mark this sequence to be removed from the alignment
217    // - since it's not from the right chain
218  0 toremove.add(pdbcs);
219    }
220    }
221    // now remove marked sequences
222  0 for (SequenceI pdbcs : toremove)
223    {
224  0 pdbAlignment.deleteSequence(pdbcs);
225  0 if (pdbcs.getAnnotation() != null)
226    {
227  0 for (AlignmentAnnotation aa : pdbcs.getAnnotation())
228    {
229  0 pdbAlignment.deleteAnnotation(aa);
230    }
231    }
232    }
233    }
234   
235  0 if (pdbAlignment == null || pdbAlignment.getHeight() < 1)
236    {
237  0 throw new Exception(MessageManager.formatMessage(
238    "exception.no_pdb_records_for_chain", new String[]
239  0 { id, ((chain == null) ? "' '" : chain) }));
240    }
241   
242    } catch (Exception ex) // Problem parsing PDB file
243    {
244  0 stopQuery();
245  0 throw (ex);
246    }
247  0 return pdbAlignment;
248    }
249   
250    /*
251    * (non-Javadoc)
252    *
253    * @see jalview.ws.DbSourceProxy#isValidReference(java.lang.String)
254    */
 
255  0 toggle @Override
256    public boolean isValidReference(String accession)
257    {
258  0 Regex r = getAccessionValidator();
259  0 return r.search(accession.trim());
260    }
261   
262    /**
263    * human glyoxalase
264    */
 
265  0 toggle @Override
266    public String getTestQuery()
267    {
268  0 return "1QIP";
269    }
270   
 
271  2210 toggle @Override
272    public String getDbName()
273    {
274  2210 return "PDB"; // getDbSource();
275    }
276   
 
277  0 toggle @Override
278    public int getTier()
279    {
280  0 return 0;
281    }
282   
283    /**
284    * Returns a descriptor for suitable feature display settings with
285    * <ul>
286    * <li>ResNums or insertions features visible</li>
287    * <li>insertions features coloured red</li>
288    * <li>ResNum features coloured by label</li>
289    * <li>Insertions displayed above (on top of) ResNums</li>
290    * </ul>
291    */
 
292  0 toggle @Override
293    public FeatureSettingsModelI getFeatureColourScheme()
294    {
295  0 return new PDBFeatureSettings();
296    }
297    }