2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
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
10 * of the License, or (at your option) any later version.
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.
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.
23 import jalview.analysis.AlignSeq;
24 import jalview.datamodel.AlignmentAnnotation;
25 import jalview.datamodel.Annotation;
26 import jalview.datamodel.Mapping;
27 import jalview.datamodel.Sequence;
28 import jalview.datamodel.SequenceFeature;
29 import jalview.datamodel.SequenceI;
30 import jalview.schemes.ColourSchemeI;
31 import jalview.schemes.ResidueProperties;
32 import jalview.structure.StructureImportSettings;
33 import jalview.structure.StructureMapping;
34 import jalview.util.Comparison;
36 import java.awt.Color;
37 import java.util.List;
38 import java.util.Vector;
42 public static final String RESNUM_FEATURE = "RESNUM";
45 * SequenceFeature group for PDB File features added to sequences
47 private static final String PDBFILEFEATURE = "PDBFile";
49 private static final String IEASTATUS = "IEA:jalview";
53 public Vector<Bond> bonds = new Vector<Bond>();
55 public Vector<Atom> atoms = new Vector<Atom>();
57 public Vector<Residue> residues = new Vector<Residue>();
62 * sequence is the sequence extracted by the chain parsing code
64 public SequenceI sequence;
67 * shadow is the sequence created by any other parsing processes (e.g. Jmol,
70 public SequenceI shadow = null;
72 public boolean isNa = false;
74 public boolean isVisible = true;
76 public int pdbstart = 0;
78 public int pdbend = 0;
80 public int seqstart = 0;
82 public int seqend = 0;
84 public String pdbid = "";
86 public PDBChain(String pdbid, String id)
88 this.pdbid = pdbid == null ? pdbid : pdbid.toLowerCase();
93 * character used to write newlines
95 protected String newline = System.getProperty("line.separator");
97 public Mapping shadowMap;
99 public void setNewlineString(String nl)
104 public String getNewlineString()
109 public String print()
111 StringBuilder tmp = new StringBuilder(256);
115 tmp.append(b.at1.resName).append(" ").append(b.at1.resNumber)
116 .append(" ").append(offset).append(newline);
119 return tmp.toString();
123 * Annotate the residues with their corresponding positions in s1 using the
124 * alignment in as NOTE: This clears all atom.alignmentMapping values on the
130 public void makeExactMapping(AlignSeq as, SequenceI s1)
132 int pdbpos = as.getSeq2Start() - 2;
133 int alignpos = s1.getStart() + as.getSeq1Start() - 3;
134 // first clear out any old alignmentMapping values:
135 for (Atom atom : atoms)
137 atom.alignmentMapping = -1;
139 // and now trace the alignment onto the atom set.
140 for (int i = 0; i < as.astr1.length(); i++)
142 if (as.astr1.charAt(i) != '-')
147 if (as.astr2.charAt(i) != '-')
152 boolean sameResidue = Comparison.isSameResidue(as.astr1.charAt(i),
153 as.astr2.charAt(i), false);
156 if (pdbpos >= residues.size())
160 Residue res = residues.elementAt(pdbpos);
161 for (Atom atom : res.atoms)
163 atom.alignmentMapping = alignpos;
170 * copy over the RESNUM seqfeatures from the internal chain sequence to the
175 * The Status of the transferred annotation
176 * @return the features added to sq (or its dataset)
178 public SequenceFeature[] transferRESNUMFeatures(SequenceI seq,
182 while (sq != null && sq.getDatasetSequence() != null)
184 sq = sq.getDatasetSequence();
191 * Remove any existing features for this chain if they exist ?
192 * SequenceFeature[] seqsfeatures=seq.getSequenceFeatures(); int
193 * totfeat=seqsfeatures.length; // Remove any features for this exact chain
194 * ? for (int i=0; i<seqsfeatures.length; i++) { }
198 status = PDBChain.IEASTATUS;
200 SequenceFeature[] features = sequence.getSequenceFeatures();
201 if (features == null)
205 for (int i = 0; i < features.length; i++)
207 if (features[i].getFeatureGroup() != null
208 && features[i].getFeatureGroup().equals(pdbid))
210 SequenceFeature tx = new SequenceFeature(features[i]);
211 tx.setBegin(1 + residues.elementAt(tx.getBegin() - offset).atoms
212 .elementAt(0).alignmentMapping);
213 tx.setEnd(1 + residues.elementAt(tx.getEnd() - offset).atoms
214 .elementAt(0).alignmentMapping);
216 + ((tx.getStatus() == null || tx.getStatus().length() == 0) ? ""
217 : ":" + tx.getStatus()));
218 if (tx.begin != 0 && tx.end != 0)
220 sq.addSequenceFeature(tx);
228 * Traverses the list of residues and constructs bonds where CA-to-CA atoms or
229 * P-to-P atoms are found. Also sets the 'isNa' flag if more than 99% of
230 * residues contain a P not a CA.
232 public void makeCaBondList()
236 for (int i = 0; i < (residues.size() - 1); i++)
238 Residue tmpres = residues.elementAt(i);
239 Residue tmpres2 = residues.elementAt(i + 1);
240 Atom at1 = tmpres.findAtom("CA");
241 Atom at2 = tmpres2.findAtom("CA");
243 if ((at1 == null) && (at2 == null))
246 at1 = tmpres.findAtom("P");
247 at2 = tmpres2.findAtom("P");
249 if ((at1 != null) && (at2 != null))
251 if (at1.chain.equals(at2.chain))
262 System.out.println("not found " + i);
267 * If > 99% 'P', flag as nucleotide; note the count doesn't include the last
270 if (residues.size() > 1 && (numNa / (residues.size() - 1) > 0.99))
277 * Construct a bond from atom1 to atom2 and add it to the list of bonds for
283 public void makeBond(Atom at1, Atom at2)
285 bonds.addElement(new Bond(at1, at2));
289 * Traverses the list of atoms and
291 * <li>constructs a list of Residues, each containing all the atoms that share
292 * the same residue number</li>
293 * <li>adds a RESNUM sequence feature for each position</li>
294 * <li>creates the sequence string</li>
295 * <li>determines if nucleotide</li>
296 * <li>saves the residue number of the first atom as 'offset'</li>
297 * <li>adds temp factor annotation if the flag is set to do so</li>
300 * @param visibleChainAnnotation
302 public void makeResidueList(boolean visibleChainAnnotation)
306 boolean deoxyn = false;
307 boolean nucleotide = false;
308 StringBuilder seq = new StringBuilder(256);
309 Vector<SequenceFeature> resFeatures = new Vector<SequenceFeature>();
310 Vector<Annotation> resAnnotation = new Vector<Annotation>();
311 int i, iSize = atoms.size() - 1;
314 for (i = 0; i <= iSize; i++)
316 Atom tmp = atoms.elementAt(i);
317 resNumber = tmp.resNumber;
318 insCode = tmp.insCode;
328 Vector<Atom> resAtoms = new Vector<Atom>();
329 // Add atoms to a vector while the residue number
330 // remains the same as the first atom's resNumber (res)
331 while ((resNumber == res) && (ins == insCode) && (i < atoms.size()))
333 resAtoms.add(atoms.elementAt(i));
336 if (i < atoms.size())
338 resNumber = atoms.elementAt(i).resNumber;
339 insCode = atoms.elementAt(i).insCode;
347 // We need this to keep in step with the outer for i = loop
350 // Add inserted residues as features to the base residue
351 Atom currAtom = resAtoms.get(0);
352 if (currAtom.insCode != ' '
353 && !residues.isEmpty()
354 && residues.lastElement().atoms.get(0).resNumber == currAtom.resNumber)
356 SequenceFeature sf = new SequenceFeature("INSERTION",
357 currAtom.resName + ":" + currAtom.resNumIns + " " + pdbid
358 + id, "", offset + count - 1, offset + count - 1,
360 resFeatures.addElement(sf);
361 residues.lastElement().atoms.addAll(resAtoms);
366 // Make a new Residue object with the new atoms vector
367 residues.addElement(new Residue(resAtoms, resNumber - 1, count));
369 Residue tmpres = residues.lastElement();
370 Atom tmpat = tmpres.atoms.get(0);
371 // Make A new SequenceFeature for the current residue numbering
372 SequenceFeature sf = new SequenceFeature(RESNUM_FEATURE, tmpat.resName
373 + ":" + tmpat.resNumIns + " " + pdbid + id, "", offset
374 + count, offset + count, pdbid);
375 resFeatures.addElement(sf);
376 resAnnotation.addElement(new Annotation(tmpat.tfactor));
377 // Keep totting up the sequence
379 if ((symbol = ResidueProperties.getAA3Hash().get(tmpat.resName)) == null)
381 String nucname = tmpat.resName.trim();
382 // use the aaIndex rather than call 'toLower' - which would take a bit
384 deoxyn = nucname.length() == 2
385 && ResidueProperties.aaIndex[nucname.charAt(0)] == ResidueProperties.aaIndex['D'];
386 if (tmpat.name.equalsIgnoreCase("CA")
387 || ResidueProperties.nucleotideIndex[nucname
388 .charAt((deoxyn ? 1 : 0))] == -1)
390 char r = ResidueProperties
391 .getSingleCharacterCode(ResidueProperties
392 .getCanonicalAminoAcid(tmpat.resName));
393 seq.append(r == '0' ? 'X' : r);
394 // System.err.println("PDBReader:Null aa3Hash for " +
401 seq.append(nucname.charAt((deoxyn ? 1 : 0)));
409 .println("Warning: mixed nucleotide and amino acid chain.. its gonna do bad things to you!");
411 seq.append(ResidueProperties.aa[((Integer) symbol).intValue()]);
422 sequence = new Sequence(id, seq.toString(), offset, resNumber - 1); // Note:
426 // Add normalised feature scores to RESNUM indicating start/end of sequence
427 // sf.setScore(offset+count);
429 // System.out.println("PDB Sequence is :\nSequence = " + seq);
430 // System.out.println("No of residues = " + residues.size());
432 if (StructureImportSettings.isShowSeqFeatures())
434 for (i = 0, iSize = resFeatures.size(); i < iSize; i++)
436 sequence.addSequenceFeature(resFeatures.elementAt(i));
437 resFeatures.setElementAt(null, i);
440 if (visibleChainAnnotation)
442 Annotation[] annots = new Annotation[resAnnotation.size()];
444 for (i = 0, iSize = annots.length; i < iSize; i++)
446 annots[i] = resAnnotation.elementAt(i);
447 if (annots[i].value > max)
449 max = annots[i].value;
451 resAnnotation.setElementAt(null, i);
454 AlignmentAnnotation tfactorann = new AlignmentAnnotation(
455 "Temperature Factor", "Temperature Factor for " + pdbid + id,
456 annots, 0, max, AlignmentAnnotation.LINE_GRAPH);
457 tfactorann.setSequenceRef(sequence);
458 sequence.addAlignmentAnnotation(tfactorann);
463 * Colour start/end of bonds by charge
465 * <li>ASP and GLU red</li>
466 * <li>LYS and ARG blue</li>
467 * <li>CYS yellow</li>
468 * <li>others light gray</li>
471 public void setChargeColours()
475 if (b.at1 != null && b.at2 != null)
477 b.startCol = getChargeColour(b.at1.resName);
478 b.endCol = getChargeColour(b.at2.resName);
482 b.startCol = Color.gray;
483 b.endCol = Color.gray;
488 public static Color getChargeColour(String resName)
490 Color result = Color.lightGray;
491 if ("ASP".equals(resName) || "GLU".equals(resName))
495 else if ("LYS".equals(resName) || "ARG".equals(resName))
499 else if ("CYS".equals(resName))
501 result = Color.yellow;
507 * Sets the start/end colours of bonds to those of the start/end atoms
508 * according to the specified colour scheme. Note: currently only works for
513 public void setChainColours(ColourSchemeI cs)
520 index = ResidueProperties.aa3Hash.get(b.at1.resName).intValue();
521 b.startCol = cs.findColour(ResidueProperties.aa[index].charAt(0),
524 index = ResidueProperties.aa3Hash.get(b.at2.resName).intValue();
525 b.endCol = cs.findColour(ResidueProperties.aa[index].charAt(0), 0,
528 } catch (Exception e)
530 b.startCol = Color.gray;
531 b.endCol = Color.gray;
536 public void setChainColours(Color col)
546 * copy any sequence annotation onto the sequence mapped using the provided
550 * - positional mapping between destination sequence and pdb resnum
552 * - mapping between destination sequence and local chain
554 public void transferResidueAnnotation(StructureMapping mapping,
555 jalview.datamodel.Mapping sqmpping)
557 SequenceI sq = mapping.getSequence();
561 while (dsq.getDatasetSequence() != null)
563 dsq = dsq.getDatasetSequence();
565 // any annotation will be transferred onto the dataset sequence
567 if (shadow != null && shadow.getAnnotation() != null)
570 for (AlignmentAnnotation ana : shadow.getAnnotation())
572 List<AlignmentAnnotation> transfer = sq.getAlignmentAnnotations(
573 ana.getCalcId(), ana.label);
574 if (transfer == null || transfer.size() == 0)
576 ana = new AlignmentAnnotation(ana);
577 ana.liftOver(sequence, shadowMap);
578 ana.liftOver(dsq, sqmpping);
579 dsq.addAlignmentAnnotation(ana);
589 if (sequence != null && sequence.getAnnotation() != null)
591 for (AlignmentAnnotation ana : sequence.getAnnotation())
593 List<AlignmentAnnotation> transfer = dsq
594 .getAlignmentAnnotations(ana.getCalcId(), ana.label);
595 if (transfer == null || transfer.size() == 0)
597 ana = new AlignmentAnnotation(ana);
598 ana.liftOver(dsq, sqmpping);
599 dsq.addAlignmentAnnotation(ana);
600 // mapping.transfer(ana);
611 // Useful for debugging mappings - adds annotation for mapped position
612 float min = -1, max = 0;
613 Annotation[] an = new Annotation[sq.getEnd() - sq.getStart() + 1];
614 for (int i = sq.getStart(), j = sq.getEnd(), k = 0; i <= j; i++, k++)
616 int prn = mapping.getPDBResNum(k + 1);
618 an[k] = new Annotation(prn);
636 sq.addAlignmentAnnotation(new AlignmentAnnotation("PDB.RESNUM",
637 "PDB Residue Numbering for " + this.pdbid + ":" + this.id,
638 an, min, max, AlignmentAnnotation.LINE_GRAPH));