Merge branch 'develop' into features/JAL-2446NCList
[jalview.git] / src / jalview / io / StructureFile.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.io;
22
23 import jalview.analysis.AlignSeq;
24 import jalview.api.FeatureSettingsModelI;
25 import jalview.datamodel.Alignment;
26 import jalview.datamodel.AlignmentAnnotation;
27 import jalview.datamodel.AlignmentI;
28 import jalview.datamodel.DBRefEntry;
29 import jalview.datamodel.DBRefSource;
30 import jalview.datamodel.PDBEntry;
31 import jalview.datamodel.PDBEntry.Type;
32 import jalview.datamodel.SequenceI;
33 import jalview.structure.StructureImportSettings;
34
35 import java.awt.Color;
36 import java.io.IOException;
37 import java.lang.reflect.Constructor;
38 import java.util.List;
39 import java.util.Vector;
40
41 import MCview.PDBChain;
42
43 public abstract class StructureFile extends AlignFile
44 {
45   private String id;
46
47   private PDBEntry.Type dbRefType;
48
49   /**
50    * set to true to add derived sequence annotations (temp factor read from
51    * file, or computed secondary structure) to the alignment
52    */
53   protected boolean visibleChainAnnotation = false;
54
55   /**
56    * Set true to predict secondary structure (using JMol for protein, Annotate3D
57    * for RNA)
58    */
59   protected boolean predictSecondaryStructure = false;
60
61   /**
62    * Set true (with predictSecondaryStructure=true) to predict secondary
63    * structure using an external service (currently Annotate3D for RNA only)
64    */
65   protected boolean externalSecondaryStructure = false;
66
67   private Vector<PDBChain> chains;
68
69   private boolean pdbIdAvailable;
70
71   public StructureFile(String inFile, DataSourceType sourceType)
72           throws IOException
73   {
74     super(inFile, sourceType);
75   }
76
77   public StructureFile(FileParse fp) throws IOException
78   {
79     super(fp);
80   }
81
82   public void addSettings(boolean addAlignmentAnnotations,
83           boolean predictSecondaryStructure, boolean externalSecStr)
84   {
85     this.visibleChainAnnotation = addAlignmentAnnotations;
86     this.predictSecondaryStructure = predictSecondaryStructure;
87     this.externalSecondaryStructure = externalSecStr;
88   }
89
90   public void xferSettings()
91   {
92     this.visibleChainAnnotation = StructureImportSettings
93             .isVisibleChainAnnotation();
94     this.predictSecondaryStructure = StructureImportSettings
95             .isProcessSecondaryStructure();
96     this.externalSecondaryStructure = StructureImportSettings
97             .isExternalSecondaryStructure();
98
99   }
100
101   public StructureFile(boolean parseImmediately, String dataObject,
102           DataSourceType sourceType) throws IOException
103   {
104     super(parseImmediately, dataObject, sourceType);
105   }
106
107   public StructureFile(boolean a, FileParse fp) throws IOException
108   {
109     super(a, fp);
110   }
111
112   public StructureFile()
113   {
114   }
115
116   protected SequenceI postProcessChain(PDBChain chain)
117   {
118     SequenceI pdbSequence = chain.sequence;
119     pdbSequence.setName(getId() + "|" + pdbSequence.getName());
120     PDBEntry entry = new PDBEntry();
121     entry.setId(getId());
122     entry.setType(getStructureFileType());
123     if (chain.id != null)
124     {
125       entry.setChainCode(chain.id);
126     }
127     if (inFile != null)
128     {
129       entry.setFile(inFile.getAbsolutePath());
130     }
131     else
132     {
133       entry.setFile(getDataName());
134     }
135
136     DBRefEntry sourceDBRef = new DBRefEntry();
137     sourceDBRef.setAccessionId(getId());
138     sourceDBRef.setSource(DBRefSource.PDB);
139     // TODO: specify version for 'PDB' database ref if it is read from a file.
140     // TODO: decide if jalview.io should be creating primary refs!
141     sourceDBRef.setVersion("");
142     pdbSequence.addPDBId(entry);
143     pdbSequence.addDBRef(sourceDBRef);
144     SequenceI chainseq = pdbSequence;
145     seqs.addElement(chainseq);
146     AlignmentAnnotation[] chainannot = chainseq.getAnnotation();
147
148     if (chainannot != null && visibleChainAnnotation)
149     {
150       for (int ai = 0; ai < chainannot.length; ai++)
151       {
152         chainannot[ai].visible = visibleChainAnnotation;
153         annotations.addElement(chainannot[ai]);
154       }
155     }
156     return chainseq;
157   }
158
159   /**
160    * filetype of structure file - default is PDB
161    */
162   String structureFileType = PDBEntry.Type.PDB.toString();
163
164   protected void setStructureFileType(String structureFileType)
165   {
166     this.structureFileType = structureFileType;
167   }
168
169   /**
170    * filetype of last file processed
171    * 
172    * @return
173    */
174   public String getStructureFileType()
175   {
176     return structureFileType;
177   }
178
179   @SuppressWarnings({ "unchecked", "rawtypes" })
180   protected void processPdbFileWithAnnotate3d(List<SequenceI> rna)
181           throws Exception
182   {
183     // System.out.println("this is a PDB format and RNA sequence");
184     // note: we use reflection here so that the applet can compile and run
185     // without the HTTPClient bits and pieces needed for accessing Annotate3D
186     // web service
187     try
188     {
189       Class cl = Class.forName("jalview.ws.jws1.Annotate3D");
190       if (cl != null)
191       {
192         // TODO: use the PDB ID of the structure if one is available, to save
193         // bandwidth and avoid uploading the whole structure to the service
194         Object annotate3d = cl.getConstructor(new Class[] {})
195                 .newInstance(new Object[] {});
196         AlignmentI al = ((AlignmentI) cl
197                 .getMethod("getRNAMLFor", new Class[]
198                 { FileParse.class })
199                 .invoke(annotate3d, new Object[]
200                 { new FileParse(getDataName(), dataSourceType) }));
201         for (SequenceI sq : al.getSequences())
202         {
203           if (sq.getDatasetSequence() != null)
204           {
205             if (sq.getDatasetSequence().getAllPDBEntries() != null)
206             {
207               sq.getDatasetSequence().getAllPDBEntries().clear();
208             }
209           }
210           else
211           {
212             if (sq.getAllPDBEntries() != null)
213             {
214               sq.getAllPDBEntries().clear();
215             }
216           }
217         }
218         replaceAndUpdateChains(rna, al, AlignSeq.DNA, false);
219       }
220     } catch (ClassNotFoundException x)
221     {
222       // ignore classnotfounds - occurs in applet
223     }
224   }
225
226   @SuppressWarnings("unchecked")
227   protected void replaceAndUpdateChains(List<SequenceI> prot, AlignmentI al,
228           String pep, boolean b)
229   {
230     List<List<? extends Object>> replaced = AlignSeq
231             .replaceMatchingSeqsWith(seqs, annotations, prot, al, pep,
232                     false);
233     for (PDBChain ch : getChains())
234     {
235       int p = 0;
236       for (SequenceI sq : (List<SequenceI>) replaced.get(0))
237       {
238         p++;
239         if (sq == ch.sequence || sq.getDatasetSequence() == ch.sequence)
240         {
241           p = -p;
242           break;
243         }
244       }
245       if (p < 0)
246       {
247         p = -p - 1;
248         // set shadow entry for chains
249         ch.shadow = (SequenceI) replaced.get(1).get(p);
250         ch.shadowMap = ((AlignSeq) replaced.get(2).get(p))
251                 .getMappingFromS1(false);
252       }
253     }
254   }
255
256   /**
257    * Predict secondary structure for RNA and/or protein sequences and add as
258    * annotations
259    * 
260    * @param rnaSequences
261    * @param proteinSequences
262    */
263   protected void addSecondaryStructure(List<SequenceI> rnaSequences,
264           List<SequenceI> proteinSequences)
265   {
266     /*
267      * Currently using Annotate3D for RNA, but only if the 'use external
268      * prediction' flag is set
269      */
270     if (externalSecondaryStructure && rnaSequences.size() > 0)
271     {
272       try
273       {
274         processPdbFileWithAnnotate3d(rnaSequences);
275       } catch (Exception x)
276       {
277         System.err.println("Exceptions when dealing with RNA in pdb file");
278         x.printStackTrace();
279
280       }
281     }
282
283     /*
284      * Currently using JMol PDB parser for peptide
285      */
286     if (proteinSequences.size() > 0)
287     {
288       try
289       {
290         processWithJmolParser(proteinSequences);
291       } catch (Exception x)
292       {
293         System.err.println(
294                 "Exceptions from Jmol when processing data in pdb file");
295         x.printStackTrace();
296       }
297     }
298   }
299
300   @SuppressWarnings({ "unchecked", "rawtypes" })
301   private void processWithJmolParser(List<SequenceI> prot) throws Exception
302   {
303     try
304     {
305
306       Class cl = Class.forName("jalview.ext.jmol.JmolParser");
307       if (cl != null)
308       {
309         final Constructor constructor = cl
310                 .getConstructor(new Class[]
311                 { FileParse.class });
312         final Object[] args = new Object[] {
313             new FileParse(getDataName(), dataSourceType) };
314
315         StructureImportSettings.setShowSeqFeatures(false);
316         StructureImportSettings.setVisibleChainAnnotation(false);
317         StructureImportSettings
318                 .setProcessSecondaryStructure(predictSecondaryStructure);
319         StructureImportSettings
320                 .setExternalSecondaryStructure(externalSecondaryStructure);
321         Object jmf = constructor.newInstance(args);
322         AlignmentI al = new Alignment((SequenceI[]) cl
323                 .getMethod("getSeqsAsArray", new Class[] {}).invoke(jmf));
324         cl.getMethod("addAnnotations", new Class[] { AlignmentI.class })
325                 .invoke(jmf, al);
326         for (SequenceI sq : al.getSequences())
327         {
328           if (sq.getDatasetSequence() != null)
329           {
330             sq.getDatasetSequence().getAllPDBEntries().clear();
331           }
332           else
333           {
334             sq.getAllPDBEntries().clear();
335           }
336         }
337         replaceAndUpdateChains(prot, al, AlignSeq.PEP, false);
338       }
339     } catch (ClassNotFoundException q)
340     {
341     }
342     StructureImportSettings.setShowSeqFeatures(true);
343   }
344
345   public PDBChain findChain(String id) throws Exception
346   {
347     for (PDBChain chain : getChains())
348     {
349       if (chain.id.equals(id))
350       {
351         return chain;
352       }
353     }
354     throw new Exception("PDB chain not Found!");
355   }
356
357   public void makeResidueList()
358   {
359     for (PDBChain chain : getChains())
360     {
361       chain.makeResidueList(visibleChainAnnotation);
362     }
363   }
364
365   public void makeCaBondList()
366   {
367     for (PDBChain chain : getChains())
368     {
369       chain.makeCaBondList();
370     }
371   }
372
373   public void setChargeColours()
374   {
375     for (PDBChain chain : getChains())
376     {
377       chain.setChargeColours();
378     }
379   }
380
381   public void setColours(jalview.schemes.ColourSchemeI cs)
382   {
383     for (PDBChain chain : getChains())
384     {
385       chain.setChainColours(cs);
386     }
387   }
388
389   public void setChainColours()
390   {
391     int i = 0;
392     for (PDBChain chain : getChains())
393     {
394       chain.setChainColours(Color.getHSBColor(1.0f / i++, .4f, 1.0f));
395     }
396   }
397
398   public static boolean isRNA(SequenceI seq)
399   {
400     int length = seq.getLength();
401     for (int i = 0; i < length; i++)
402     {
403       char c = seq.getCharAt(i);
404       if ((c != 'A') && (c != 'C') && (c != 'G') && (c != 'U'))
405       {
406         return false;
407       }
408     }
409     return true;
410   }
411
412   /**
413    * make a friendly ID string.
414    * 
415    * @param dataName
416    * @return truncated dataName to after last '/' and pruned .extension if
417    *         present
418    */
419   protected String safeName(String dataName)
420   {
421     int p = 0;
422     while ((p = dataName.indexOf("/")) > -1 && p < dataName.length())
423     {
424       dataName = dataName.substring(p + 1);
425     }
426     if (dataName.indexOf(".") > -1)
427     {
428       dataName = dataName.substring(0, dataName.lastIndexOf("."));
429     }
430     return dataName;
431   }
432
433   public String getId()
434   {
435     return id;
436   }
437
438   public void setId(String id)
439   {
440     this.id = id;
441   }
442
443   public Vector<PDBChain> getChains()
444   {
445     return chains;
446   }
447
448   public void setChains(Vector<PDBChain> chains)
449   {
450     this.chains = chains;
451   }
452
453   public Type getDbRefType()
454   {
455     return dbRefType;
456   }
457
458   public void setDbRefType(String dbRefType)
459   {
460     this.dbRefType = Type.getType(dbRefType);
461   }
462
463   public void setDbRefType(Type dbRefType)
464   {
465     this.dbRefType = dbRefType;
466   }
467
468   /**
469    * Returns a descriptor for suitable feature display settings with
470    * <ul>
471    * <li>ResNums or insertions features visible</li>
472    * <li>insertions features coloured red</li>
473    * <li>ResNum features coloured by label</li>
474    * <li>Insertions displayed above (on top of) ResNums</li>
475    * </ul>
476    */
477   @Override
478   public FeatureSettingsModelI getFeatureColourScheme()
479   {
480     return new PDBFeatureSettings();
481   }
482
483   /**
484    * Answers true if the structure file has a PDBId
485    * 
486    * @return
487    */
488   public boolean isPPDBIdAvailable()
489   {
490     return pdbIdAvailable;
491   }
492
493   public void setPDBIdAvailable(boolean pdbIdAvailable)
494   {
495     this.pdbIdAvailable = pdbIdAvailable;
496   }
497 }