2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
3 * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, 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/>.
24 import jalview.analysis.*;
25 import jalview.datamodel.*;
26 import jalview.schemes.*;
27 import jalview.structure.StructureMapping;
32 * SequenceFeature group for PDB File features added to sequences
34 private static final String PDBFILEFEATURE = "PDBFile";
36 private static final String IEASTATUS = "IEA:jalview";
40 public Vector bonds = new Vector();
42 public Vector atoms = new Vector();
44 public Vector residues = new Vector();
48 public Sequence sequence;
50 public boolean isNa = false;
52 public boolean isVisible = true;
54 public int pdbstart = 0;
56 public int pdbend = 0;
58 public int seqstart = 0;
60 public int seqend = 0;
62 public String pdbid = "";
64 public PDBChain(String pdbid, String id)
66 this.pdbid = pdbid.toLowerCase();
71 * character used to write newlines
73 protected String newline = System.getProperty("line.separator");
75 public void setNewlineString(String nl)
80 public String getNewlineString()
89 for (int i = 0; i < bonds.size(); i++)
91 tmp = tmp + ((Bond) bonds.elementAt(i)).at1.resName + " "
92 + ((Bond) bonds.elementAt(i)).at1.resNumber + " " + offset
100 * Annotate the residues with their corresponding positions in s1 using the
102 * NOTE: This clears all atom.alignmentMapping values on the structure.
106 public void makeExactMapping(AlignSeq as, SequenceI s1)
108 int pdbpos = as.getSeq2Start() - 2;
109 int alignpos = s1.getStart() + as.getSeq1Start() - 3;
110 // first clear out any old alignmentMapping values:
111 for (Atom atom: (Vector<Atom>) atoms) {
112 atom.alignmentMapping=-1;
114 // and now trace the alignment onto the atom set.
115 for (int i = 0; i < as.astr1.length(); i++)
117 if (as.astr1.charAt(i) != '-')
122 if (as.astr2.charAt(i) != '-')
127 if (as.astr1.charAt(i) == as.astr2.charAt(i))
129 Residue res = (Residue) residues.elementAt(pdbpos);
130 Enumeration en = res.atoms.elements();
131 while (en.hasMoreElements())
133 Atom atom = (Atom) en.nextElement();
134 atom.alignmentMapping = alignpos;
141 * copy over the RESNUM seqfeatures from the internal chain sequence to the
146 * The Status of the transferred annotation
147 * @return the features added to sq (or its dataset)
149 public SequenceFeature[] transferRESNUMFeatures(SequenceI seq,
153 while (sq != null && sq.getDatasetSequence() != null)
155 sq = sq.getDatasetSequence();
162 * Remove any existing features for this chain if they exist ?
163 * SequenceFeature[] seqsfeatures=seq.getSequenceFeatures(); int
164 * totfeat=seqsfeatures.length; // Remove any features for this exact chain
165 * ? for (int i=0; i<seqsfeatures.length; i++) { }
169 status = PDBChain.IEASTATUS;
171 SequenceFeature[] features = sequence.getSequenceFeatures();
172 for (int i = 0; i < features.length; i++)
174 if (features[i].getFeatureGroup().equals(pdbid))
176 SequenceFeature tx = new SequenceFeature(features[i]);
177 tx.setBegin(1 + ((Atom) ((Residue) residues.elementAt(tx.getBegin()
178 - offset)).atoms.elementAt(0)).alignmentMapping);
179 tx.setEnd(1 + ((Atom) ((Residue) residues.elementAt(tx.getEnd()
180 - offset)).atoms.elementAt(0)).alignmentMapping);
182 + ((tx.getStatus() == null || tx.getStatus().length() == 0) ? ""
183 : ":" + tx.getStatus()));
184 if (tx.begin != 0 && tx.end != 0)
185 sq.addSequenceFeature(tx);
191 public void makeCaBondList()
195 for (int i = 0; i < (residues.size() - 1); i++)
197 Residue tmpres = (Residue) residues.elementAt(i);
198 Residue tmpres2 = (Residue) residues.elementAt(i + 1);
199 Atom at1 = tmpres.findAtom("CA");
200 Atom at2 = tmpres2.findAtom("CA");
202 if ((at1 == null) && (at2 == null))
205 at1 = tmpres.findAtom("P");
206 at2 = tmpres2.findAtom("P");
208 if ((at1 != null) && (at2 != null))
210 if (at1.chain.equals(at2.chain))
221 System.out.println("not found " + i);
224 if (numNa > 0 && ((numNa / residues.size()) > 0.99))
230 public void makeBond(Atom at1, Atom at2)
232 float[] start = new float[3];
233 float[] end = new float[3];
243 bonds.addElement(new Bond(start, end, at1, at2));
246 public void makeResidueList()
250 boolean deoxyn=false;
251 boolean nucleotide = false;
252 StringBuffer seq = new StringBuffer();
253 Vector resFeatures = new Vector();
254 Vector resAnnotation = new Vector();
255 int i, iSize = atoms.size() - 1;
257 for (i = 0; i <= iSize; i++)
259 Atom tmp = (Atom) atoms.elementAt(i);
260 resNumber = tmp.resNumber;
268 Vector resAtoms = new Vector();
269 // Add atoms to a vector while the residue number
270 // remains the same as the first atom's resNumber (res)
271 while ((resNumber == res) && (i < atoms.size()))
273 resAtoms.addElement((Atom) atoms.elementAt(i));
276 if (i < atoms.size())
278 resNumber = ((Atom) atoms.elementAt(i)).resNumber;
286 // We need this to keep in step with the outer for i = loop
289 // Make a new Residue object with the new atoms vector
290 residues.addElement(new Residue(resAtoms, resNumber - 1, count));
292 Residue tmpres = (Residue) residues.lastElement();
293 Atom tmpat = (Atom) tmpres.atoms.elementAt(0);
294 // Make A new SequenceFeature for the current residue numbering
295 SequenceFeature sf = new SequenceFeature("RESNUM", tmpat.resName
296 + ":" + tmpat.resNumIns + " " + pdbid + id, "", offset
297 + count, offset + count, pdbid);
298 // MCview.PDBChain.PDBFILEFEATURE);
299 resFeatures.addElement(sf);
300 resAnnotation.addElement(new Annotation(tmpat.tfactor));
301 // Keep totting up the sequence
302 if ((symbol = ResidueProperties.getAA3Hash().get(tmpat.resName)) == null)
304 String nucname = tmpat.resName.trim();
305 // use the aaIndex rather than call 'toLower' - which would take a bit more time.
306 deoxyn=nucname.length()==2 && ResidueProperties.aaIndex[nucname.charAt(0)]==ResidueProperties.aaIndex['D'];
307 if (tmpat.name.equalsIgnoreCase("CA")
308 || ResidueProperties.nucleotideIndex[nucname.charAt((deoxyn ? 1 : 0))] == -1)
311 // System.err.println("PDBReader:Null aa3Hash for " +
318 seq.append(nucname.charAt((deoxyn ? 1 : 0)));
326 .println("Warning: mixed nucleotide and amino acid chain.. its gonna do bad things to you!");
328 seq.append(ResidueProperties.aa[((Integer) symbol).intValue()]);
338 sequence = new Sequence(id, seq.toString(), offset, resNumber - 1); // Note:
342 // Add normalised feature scores to RESNUM indicating start/end of sequence
343 // sf.setScore(offset+count);
345 // System.out.println("PDB Sequence is :\nSequence = " + seq);
346 // System.out.println("No of residues = " + residues.size());
347 for (i = 0, iSize = resFeatures.size(); i < iSize; i++)
349 sequence.addSequenceFeature((SequenceFeature) resFeatures
351 resFeatures.setElementAt(null, i);
353 Annotation[] annots = new Annotation[resAnnotation.size()];
355 for (i = 0, iSize = annots.length; i < iSize; i++)
357 annots[i] = (Annotation) resAnnotation.elementAt(i);
358 if (annots[i].value > max)
359 max = annots[i].value;
360 resAnnotation.setElementAt(null, i);
362 AlignmentAnnotation tfactorann = new AlignmentAnnotation(
363 "PDB.TempFactor", "Temperature Factor for "
364 + sequence.getName(), annots, 0, max,
365 AlignmentAnnotation.LINE_GRAPH);
366 tfactorann.setSequenceRef(sequence);
367 sequence.addAlignmentAnnotation(tfactorann);
370 public void setChargeColours()
372 for (int i = 0; i < bonds.size(); i++)
376 Bond b = (Bond) bonds.elementAt(i);
378 if (b.at1.resName.equalsIgnoreCase("ASP")
379 || b.at1.resName.equalsIgnoreCase("GLU"))
381 b.startCol = Color.red;
383 else if (b.at1.resName.equalsIgnoreCase("LYS")
384 || b.at1.resName.equalsIgnoreCase("ARG"))
386 b.startCol = Color.blue;
388 else if (b.at1.resName.equalsIgnoreCase("CYS"))
390 b.startCol = Color.yellow;
394 b.startCol = Color.lightGray;
397 if (b.at2.resName.equalsIgnoreCase("ASP")
398 || b.at2.resName.equalsIgnoreCase("GLU"))
400 b.endCol = Color.red;
402 else if (b.at2.resName.equalsIgnoreCase("LYS")
403 || b.at2.resName.equalsIgnoreCase("ARG"))
405 b.endCol = Color.blue;
407 else if (b.at2.resName.equalsIgnoreCase("CYS"))
409 b.endCol = Color.yellow;
413 b.endCol = Color.lightGray;
415 } catch (Exception e)
417 Bond b = (Bond) bonds.elementAt(i);
418 b.startCol = Color.gray;
419 b.endCol = Color.gray;
424 public void setChainColours(jalview.schemes.ColourSchemeI cs)
428 for (int i = 0; i < bonds.size(); i++)
432 b = (Bond) bonds.elementAt(i);
434 index = ((Integer) ResidueProperties.aa3Hash.get(b.at1.resName))
436 b.startCol = cs.findColour(ResidueProperties.aa[index].charAt(0));
438 index = ((Integer) ResidueProperties.aa3Hash.get(b.at2.resName))
440 b.endCol = cs.findColour(ResidueProperties.aa[index].charAt(0));
442 } catch (Exception e)
444 b = (Bond) bonds.elementAt(i);
445 b.startCol = Color.gray;
446 b.endCol = Color.gray;
451 public void setChainColours(Color col)
453 for (int i = 0; i < bonds.size(); i++)
455 Bond tmp = (Bond) bonds.elementAt(i);
461 public AlignmentAnnotation[] transferResidueAnnotation(SequenceI seq,
464 AlignmentAnnotation[] transferred = null;
471 * copy any sequence annotation onto the sequence mapped using the provided
476 public void transferResidueAnnotation(StructureMapping mapping)
478 SequenceI sq = mapping.getSequence();
481 if (sequence != null && sequence.getAnnotation() != null)
485 float min = -1, max = 0;
486 Annotation[] an = new Annotation[sq.getEnd() - sq.getStart() + 1];
487 for (int i = sq.getStart(), j = sq.getEnd(), k = 0; i <= j; i++, k++)
489 int prn = mapping.getPDBResNum(k + 1);
491 an[k] = new Annotation((float) prn);
509 sq.addAlignmentAnnotation(new AlignmentAnnotation("PDB.RESNUM",
510 "PDB Residue Numbering for " + this.pdbid + ":" + this.id,
511 an, (float) min, (float) max, AlignmentAnnotation.LINE_GRAPH));