JAL-1028 tidy and refactor external processing and mapping to separate functions
[jalview.git] / src / MCview / PDBfile.java
1 /*
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
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 of the License, or (at your option) any later version.
10  *  
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.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package MCview;
19
20 import java.io.*;
21 import java.util.*;
22
23 import java.awt.*;
24
25 import javax.xml.parsers.ParserConfigurationException;
26
27 import org.xml.sax.SAXException;
28
29 import fr.orsay.lri.varna.exceptions.ExceptionFileFormatOrSyntax;
30 import fr.orsay.lri.varna.exceptions.ExceptionLoadingFailed;
31 import fr.orsay.lri.varna.exceptions.ExceptionPermissionDenied;
32 import fr.orsay.lri.varna.exceptions.ExceptionUnmatchedClosingParentheses;
33
34 import jalview.analysis.AlignSeq;
35 import jalview.datamodel.*;
36 import jalview.io.FileParse;
37 import jalview.ws.jws1.Annotate3D;
38
39 public class PDBfile extends jalview.io.AlignFile
40 {
41   public Vector chains;
42
43   public String id;
44
45   /**
46    * set to true to add chain alignment annotation as visible annotation.
47    */
48   boolean VisibleChainAnnotation = false;
49
50   public PDBfile(String inFile, String inType) throws IOException, ExceptionFileFormatOrSyntax, ParserConfigurationException, SAXException, ExceptionPermissionDenied, ExceptionLoadingFailed, InterruptedException, ExceptionUnmatchedClosingParentheses
51   {
52     super(inFile, inType);
53   }
54
55   public PDBfile(FileParse source) throws IOException, ExceptionFileFormatOrSyntax, ParserConfigurationException, SAXException, ExceptionPermissionDenied, ExceptionLoadingFailed, InterruptedException, ExceptionUnmatchedClosingParentheses
56   {
57     super(source);
58   }
59
60   public String print()
61   {
62     return null;
63   }
64
65   public void parse() throws IOException, ExceptionFileFormatOrSyntax, ParserConfigurationException, SAXException, ExceptionPermissionDenied, ExceptionLoadingFailed, InterruptedException
66   {
67     // TODO set the filename sensibly - try using data source name.
68     id = safeName(getDataName());
69
70     chains = new Vector();
71     ArrayList<SequenceI> rna=new ArrayList<SequenceI>();
72     PDBChain tmpchain;
73     String line = null;
74     boolean modelFlag = false;
75     boolean terFlag = false;
76     String lastID = "";
77
78     int index = 0;
79     String atomnam = null;
80     try
81     {
82       while ((line = nextLine()) != null)
83       {
84         if (line.indexOf("HEADER") == 0)
85         {
86           if (line.length() > 62)
87           {
88             String tid;
89             if (line.length() > 67)
90             {
91               tid = line.substring(62, 67).trim();
92             }
93             else
94             {
95               tid = line.substring(62).trim();
96             }
97             if (tid.length() > 0)
98             {
99               id = tid;
100             }
101             continue;
102           }
103         }
104         // Were we to do anything with SEQRES - we start it here
105         if (line.indexOf("SEQRES") == 0)
106         {
107         }
108
109         if (line.indexOf("MODEL") == 0)
110         {
111           modelFlag = true;
112         }
113
114         if (line.indexOf("TER") == 0)
115         {
116           terFlag = true;
117         }
118
119         if (modelFlag && line.indexOf("ENDMDL") == 0)
120         {
121           break;
122         }
123         if (line.indexOf("ATOM") == 0
124                 || (line.indexOf("HETATM") == 0 && !terFlag))
125         {
126           terFlag = false;
127
128           // Jalview is only interested in CA bonds????
129           atomnam = line.substring(12, 15).trim();
130           if (!atomnam.equals("CA") && !atomnam.equals("P"))
131           {
132             continue;
133           }
134
135           Atom tmpatom = new Atom(line);
136           tmpchain = findChain(tmpatom.chain);
137           if (tmpchain != null)
138           {
139             if (tmpatom.resNumIns.trim().equals(lastID))
140             {
141               // phosphorylated protein - seen both CA and P..
142               continue;
143             }
144             tmpchain.atoms.addElement(tmpatom);
145           }
146           else
147           {
148             tmpchain = new PDBChain(id, tmpatom.chain);
149             chains.addElement(tmpchain);
150             tmpchain.atoms.addElement(tmpatom);
151           }
152           lastID = tmpatom.resNumIns.trim();
153         }
154         index++;
155       }
156
157       makeResidueList();
158       makeCaBondList();
159
160       if (id == null)
161       {
162         id = inFile.getName();
163       }
164       for (int i = 0; i < chains.size(); i++)
165       {
166         SequenceI dataset = ((PDBChain) chains.elementAt(i)).sequence;
167         dataset.setName(id + "|" + dataset.getName());
168         PDBEntry entry = new PDBEntry();
169         entry.setId(id);
170         entry.setProperty(new Hashtable());
171         entry.getProperty().put("CHAIN", ((PDBChain)chains.elementAt(i)).id);
172         if (inFile != null)
173         {
174           entry.setFile(inFile.getAbsolutePath());
175         }
176         else
177         {
178           // TODO: decide if we should dump the datasource to disk
179           entry.setFile(getDataName());
180         }
181         dataset.addPDBId(entry);
182         SequenceI chainseq = dataset.deriveSequence(); // PDBChain objects
183         // maintain reference to
184         // dataset
185         seqs.addElement(chainseq);
186        if(isRNA(chainseq)==true)
187        {
188          rna.add(chainseq);
189        }
190          
191         AlignmentAnnotation[] chainannot = chainseq.getAnnotation();
192         
193         if (chainannot != null)
194         {
195           for (int ai = 0; ai < chainannot.length; ai++)
196           {
197         
198             chainannot[ai].visible = VisibleChainAnnotation;
199             annotations.addElement(chainannot[ai]);
200           }
201         }
202       }
203       if (rna.size()>0)
204       try {
205         processPdbFileWithAnnotate3d(rna);
206       } catch (Exception x)
207       {
208         System.err.println("Exceptions when dealing with RNA in pdb file");
209         x.printStackTrace();
210         
211       };
212     } catch (OutOfMemoryError er)
213     {
214       System.out.println("OUT OF MEMORY LOADING PDB FILE");
215       throw new IOException("Out of memory loading PDB File");
216     } catch (NumberFormatException ex)
217     {
218       if (line != null)
219       {
220         System.err.println("Couldn't read number from line:");
221         System.err.println(line);
222       }
223     }
224   }
225
226   private void processPdbFileWithAnnotate3d(ArrayList<SequenceI> rna) throws Exception {
227 //    System.out.println("this is a PDB format and RNA sequence");
228     Annotate3D an3d = new Annotate3D();
229     AlignmentI al = an3d.getRNAMLFor(new FileParse(getDataName(),type));
230     replaceMatchingSeqsWith(rna, al, AlignSeq.DNA);
231   }
232   private void replaceMatchingSeqsWith(ArrayList<SequenceI> ochains, AlignmentI al, String dnaOrProtein)
233   {
234     if (al!=null && al.getHeight()>0)
235     {
236       ArrayList<SequenceI> matches=new ArrayList<SequenceI>();
237       ArrayList<AlignSeq> aligns=new ArrayList<AlignSeq>();
238       
239       for (SequenceI sq:ochains)
240       {
241         SequenceI bestm=null;
242         AlignSeq bestaseq=null;
243         int bestscore=0;
244         for (SequenceI msq:al.getSequences())
245         {
246           AlignSeq aseq = AlignSeq.doGlobalNWAlignment(msq, sq, dnaOrProtein);
247           if (bestm==null || aseq.getMaxScore()>bestscore)
248           {
249             bestscore=aseq.getMaxScore();
250             bestaseq= aseq;
251             bestm=msq;
252           }
253         }
254         System.out.println("Best Score for "+(matches.size()+1)+" :"+bestscore);
255         matches.add(bestm);
256         aligns.add(bestaseq);
257         al.deleteSequence(bestm);
258       }
259       for (int p=0,pSize=seqs.size();p<pSize;p++)
260       {
261         SequenceI sq,sp=seqs.get(p);
262         int q;
263         if ((q=ochains.indexOf(sp))>-1)
264         {
265           seqs.set(p, sq=matches.get(q));
266           sq.setName(sp.getName());
267           sq.setDescription(sp.getDescription());
268           sq.transferAnnotation(sp, aligns.get(q).getMappingFromS1(false));
269           int inspos=-1;
270           for (int ap=0;ap<annotations.size();)
271           {
272             if (((AlignmentAnnotation)annotations.get(ap)).sequenceRef==sp) {
273               if (inspos==-1)
274               {
275                 inspos=ap;
276               }
277               annotations.remove(ap);
278             } else {
279               ap++;
280             }
281           }
282           annotations.addAll(inspos, Arrays.asList(sq.getAnnotation()));
283         }
284       }
285     }
286   }
287   /**
288    * make a friendly ID string.
289    * 
290    * @param dataName
291    * @return truncated dataName to after last '/'
292    */
293   private String safeName(String dataName)
294   {
295     int p = 0;
296     while ((p = dataName.indexOf("/")) > -1 && p < dataName.length())
297     {
298       dataName = dataName.substring(p + 1);
299     }
300     return dataName;
301   }
302
303   public void makeResidueList()
304   {
305     for (int i = 0; i < chains.size(); i++)
306     {
307       ((PDBChain) chains.elementAt(i)).makeResidueList();
308     }
309   }
310
311   public void makeCaBondList()
312   {
313     for (int i = 0; i < chains.size(); i++)
314     {
315       ((PDBChain) chains.elementAt(i)).makeCaBondList();
316     }
317   }
318
319   public PDBChain findChain(String id)
320   {
321     for (int i = 0; i < chains.size(); i++)
322     {
323       if (((PDBChain) chains.elementAt(i)).id.equals(id))
324       {
325         return (PDBChain) chains.elementAt(i);
326       }
327     }
328
329     return null;
330   }
331
332   public void setChargeColours()
333   {
334     for (int i = 0; i < chains.size(); i++)
335     {
336       ((PDBChain) chains.elementAt(i)).setChargeColours();
337     }
338   }
339
340   public void setColours(jalview.schemes.ColourSchemeI cs)
341   {
342     for (int i = 0; i < chains.size(); i++)
343     {
344       ((PDBChain) chains.elementAt(i)).setChainColours(cs);
345     }
346   }
347
348   public void setChainColours()
349   {
350     for (int i = 0; i < chains.size(); i++)
351     {
352       ((PDBChain) chains.elementAt(i)).setChainColours(Color.getHSBColor(
353               1.0f / (float) i, .4f, 1.0f));
354     }
355   }
356   public boolean isRNA(SequenceI seqs)
357   {
358           for (int i=0;i<seqs.getLength();i++){
359                   if((seqs.getCharAt(i)!='A') &&(seqs.getCharAt(i)!='C')&&(seqs.getCharAt(i)!='G')&&(seqs.getCharAt(i)!='U'))
360                   {
361                           return false;
362                   }
363           }
364          
365                   return true;
366           
367           
368   }
369 }