X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2FMCview%2FPDBChain.java;h=cf794b631327724b869d395424b2e29ec6dd40d2;hb=50973d198edf5874fc8c41275e30a698dd51c2e9;hp=e4e619c577052c6a7a0803760c994c33af058f92;hpb=77ac7f545e96bd4bde47991f77291a71eb5b90e6;p=jalview.git diff --git a/src/MCview/PDBChain.java b/src/MCview/PDBChain.java index e4e619c..cf794b6 100755 --- a/src/MCview/PDBChain.java +++ b/src/MCview/PDBChain.java @@ -29,6 +29,7 @@ import jalview.datamodel.SequenceFeature; import jalview.datamodel.SequenceI; import jalview.schemes.ColourSchemeI; import jalview.schemes.ResidueProperties; +import jalview.structure.StructureImportSettings; import jalview.structure.StructureMapping; import java.awt.Color; @@ -81,7 +82,7 @@ public class PDBChain public PDBChain(String pdbid, String id) { - this.pdbid = pdbid.toLowerCase(); + this.pdbid = pdbid == null ? pdbid : pdbid.toLowerCase(); this.id = id; } @@ -147,6 +148,10 @@ public class PDBChain if (as.astr1.charAt(i) == as.astr2.charAt(i)) { + if (pdbpos >= residues.size()) + { + continue; + } Residue res = residues.elementAt(pdbpos); for (Atom atom : res.atoms) { @@ -188,6 +193,10 @@ public class PDBChain status = PDBChain.IEASTATUS; } SequenceFeature[] features = sequence.getSequenceFeatures(); + if (features == null) + { + return null; + } for (int i = 0; i < features.length; i++) { if (features[i].getFeatureGroup().equals(pdbid)) @@ -335,6 +344,7 @@ public class PDBChain // Add inserted residues as features to the base residue Atom currAtom = resAtoms.get(0); if (currAtom.insCode != ' ' + && !residues.isEmpty() && residues.lastElement().atoms.get(0).resNumber == currAtom.resNumber) { SequenceFeature sf = new SequenceFeature("INSERTION", @@ -353,13 +363,13 @@ public class PDBChain Residue tmpres = residues.lastElement(); Atom tmpat = tmpres.atoms.get(0); // Make A new SequenceFeature for the current residue numbering - SequenceFeature sf = new SequenceFeature("RES NUM", tmpat.resName + SequenceFeature sf = new SequenceFeature("RESNUM", tmpat.resName + ":" + tmpat.resNumIns + " " + pdbid + id, "", offset + count, offset + count, pdbid); - // MCview.PDBChain.PDBFILEFEATURE); resFeatures.addElement(sf); resAnnotation.addElement(new Annotation(tmpat.tfactor)); // Keep totting up the sequence + if ((symbol = ResidueProperties.getAA3Hash().get(tmpat.resName)) == null) { String nucname = tmpat.resName.trim(); @@ -371,9 +381,12 @@ public class PDBChain || ResidueProperties.nucleotideIndex[nucname .charAt((deoxyn ? 1 : 0))] == -1) { - seq.append("X"); - // System.err.println("PDBReader:Null aa3Hash for " + - // tmpat.resName); + char r = ResidueProperties + .getSingleCharacterCode(ResidueProperties + .getCanonicalAminoAcid(tmpat.resName)); + seq.append(r == '0' ? 'X' : r); + // System.err.println("PDBReader:Null aa3Hash for " + + // tmpat.resName); } else { @@ -409,11 +422,15 @@ public class PDBChain // System.out.println("PDB Sequence is :\nSequence = " + seq); // System.out.println("No of residues = " + residues.size()); + + if (StructureImportSettings.isShowSeqFeatures()) + { for (i = 0, iSize = resFeatures.size(); i < iSize; i++) { sequence.addSequenceFeature(resFeatures.elementAt(i)); resFeatures.setElementAt(null, i); } + } if (visibleChainAnnotation) { Annotation[] annots = new Annotation[resAnnotation.size()]; @@ -565,12 +582,13 @@ public class PDBChain { for (AlignmentAnnotation ana : sequence.getAnnotation()) { - List transfer = sq + List transfer = dsq .getAlignmentAnnotations(ana.getCalcId(), ana.label); if (transfer == null || transfer.size() == 0) { ana = new AlignmentAnnotation(ana); ana.liftOver(dsq, sqmpping); + dsq.addAlignmentAnnotation(ana); // mapping.transfer(ana); } else