X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2FMCview%2FPDBfile.java;h=e1c4dc5688fa7e6aa317dd3ff76f5870f2ba1fe1;hb=861271ee9d5099ba6dd637d27b979d507ac5d9f8;hp=7d2ceacc4cd608994b8ab1fa0429a68d129954d8;hpb=3325395b33ef3b52b4a62327621c5bddf12ee4e0;p=jalview.git diff --git a/src/MCview/PDBfile.java b/src/MCview/PDBfile.java index 7d2ceac..e1c4dc5 100755 --- a/src/MCview/PDBfile.java +++ b/src/MCview/PDBfile.java @@ -47,32 +47,38 @@ public class PDBfile extends jalview.io.AlignFile */ boolean VisibleChainAnnotation = false; - boolean processSecondaryStructure=true; - + boolean processSecondaryStructure = true; + + boolean externalSecondaryStructure = false; public PDBfile(boolean visibleChainAnnotation, - boolean processSecondaryStructure) + boolean processSecondaryStructure, boolean externalSecStr) { super(); VisibleChainAnnotation = visibleChainAnnotation; this.processSecondaryStructure = processSecondaryStructure; + this.externalSecondaryStructure = externalSecStr; } public PDBfile(boolean visibleChainAnnotation, - boolean processSecondaryStructure, String file, String protocol) throws IOException + boolean processSecondaryStructure, boolean externalSecStr, + String file, String protocol) throws IOException { super(false, file, protocol); VisibleChainAnnotation = visibleChainAnnotation; this.processSecondaryStructure = processSecondaryStructure; + this.externalSecondaryStructure = externalSecStr; doParse(); } public PDBfile(boolean visibleChainAnnotation, - boolean processSecondaryStructure, FileParse source) throws IOException + boolean processSecondaryStructure, boolean externalSecStr, + FileParse source) throws IOException { super(false, source); VisibleChainAnnotation = visibleChainAnnotation; this.processSecondaryStructure = processSecondaryStructure; + this.externalSecondaryStructure = externalSecStr; doParse(); } @@ -189,8 +195,7 @@ public class PDBfile extends jalview.io.AlignFile entry.setProperty(new Hashtable()); if (chains.elementAt(i).id != null) { - entry.getProperty().put("CHAIN", - chains.elementAt(i).id); + entry.getProperty().put("CHAIN", chains.elementAt(i).id); } if (inFile != null) { @@ -217,7 +222,7 @@ public class PDBfile extends jalview.io.AlignFile AlignmentAnnotation[] chainannot = chainseq.getAnnotation(); - if (chainannot != null) + if (chainannot != null && VisibleChainAnnotation) { for (int ai = 0; ai < chainannot.length; ai++) { @@ -228,34 +233,34 @@ public class PDBfile extends jalview.io.AlignFile } if (processSecondaryStructure) { - if (rna.size() > 0) - { - try - { - processPdbFileWithAnnotate3d(rna); - } catch (Exception x) + if (externalSecondaryStructure && rna.size() > 0) { - System.err - .println("Exceptions when dealing with RNA in pdb file"); - x.printStackTrace(); + try + { + processPdbFileWithAnnotate3d(rna); + } catch (Exception x) + { + System.err + .println("Exceptions when dealing with RNA in pdb file"); + x.printStackTrace(); + } } - } - ; - if (prot.size() > 0) - { - try - { - processPdbFileWithJmol(prot); - } catch (Exception x) + ; + if (prot.size() > 0) { - System.err - .println("Exceptions from Jmol when processing data in pdb file"); - x.printStackTrace(); + try + { + processPdbFileWithJmol(prot); + } catch (Exception x) + { + System.err + .println("Exceptions from Jmol when processing data in pdb file"); + x.printStackTrace(); + } } } - } } catch (OutOfMemoryError er) { System.out.println("OUT OF MEMORY LOADING PDB FILE"); @@ -273,19 +278,19 @@ public class PDBfile extends jalview.io.AlignFile markCalcIds(); } - private static String calcIdPrefix = "JalviewPDB:"; + private static String calcIdPrefix = "JalviewPDB"; public static boolean isCalcIdHandled(String calcId) { - return calcId != null - && (calcId.startsWith(calcIdPrefix) && calcId.indexOf( - calcIdPrefix, - calcIdPrefix.length() + 1) > -1); + return calcId != null && (calcIdPrefix.equals(calcId)); } - public static boolean isCalcIdForFile(String calcId, String pdbFile) + + public static boolean isCalcIdForFile(AlignmentAnnotation alan, + String pdbFile) { - return (calcId != null && calcId.startsWith(calcIdPrefix + pdbFile - + ":" + calcIdPrefix)); + return alan.getCalcId() != null + && calcIdPrefix.equals(alan.getCalcId()) + && pdbFile.equals(alan.getProperty("PDBID")); } public static String relocateCalcId(String calcId, @@ -301,17 +306,23 @@ public class PDBfile extends jalview.io.AlignFile { for (SequenceI sq : seqs) { - for (AlignmentAnnotation aa : sq.getAnnotation()) + if (sq.getAnnotation() != null) { - String oldId = aa.getCalcId(); - if (oldId == null) + for (AlignmentAnnotation aa : sq.getAnnotation()) { - oldId = ""; + String oldId = aa.getCalcId(); + if (oldId == null) + { + oldId = ""; + } + aa.setCalcId(calcIdPrefix); + aa.setProperty("PDBID", id); + aa.setProperty("oldCalcId", oldId); } - aa.setCalcId("JalviewPDB:" + id + ":JalviewPDB:" + oldId); } } } + private void processPdbFileWithJmol(ArrayList prot) throws Exception { @@ -339,13 +350,42 @@ public class PDBfile extends jalview.io.AlignFile sq.getPDBId().clear(); } } - AlignSeq.replaceMatchingSeqsWith(seqs, annotations, prot, al, AlignSeq.PEP, false); + replaceAndUpdateChains(prot, al, AlignSeq.PEP, false); } } catch (ClassNotFoundException q) { } } + private void replaceAndUpdateChains(ArrayList prot, + AlignmentI al, String pep, boolean b) + { + List> replaced = AlignSeq + .replaceMatchingSeqsWith(seqs, annotations, prot, al, + AlignSeq.PEP, false); + for (PDBChain ch : chains) + { + int p = 0; + for (SequenceI sq : (List) replaced.get(0)) + { + p++; + if (sq == ch.sequence || sq.getDatasetSequence() == ch.sequence) + { + p = -p; + break; + } + } + if (p < 0) + { + p = -p - 1; + // set shadow entry for chains + ch.shadow = (SequenceI) replaced.get(1).get(p); + ch.shadowMap = ((AlignSeq) replaced.get(2).get(p)) + .getMappingFromS1(false); + } + } + } + private void processPdbFileWithAnnotate3d(ArrayList rna) throws Exception { @@ -371,14 +411,20 @@ public class PDBfile extends jalview.io.AlignFile { if (sq.getDatasetSequence() != null) { - sq.getDatasetSequence().getPDBId().clear(); + if (sq.getDatasetSequence().getPDBId() != null) + { + sq.getDatasetSequence().getPDBId().clear(); + } } else { - sq.getPDBId().clear(); + if (sq.getPDBId() != null) + { + sq.getPDBId().clear(); + } } } - AlignSeq.replaceMatchingSeqsWith(seqs, annotations, rna, al, AlignSeq.DNA, false); + replaceAndUpdateChains(rna, al, AlignSeq.DNA, false); } } catch (ClassNotFoundException x) { @@ -407,7 +453,7 @@ public class PDBfile extends jalview.io.AlignFile { for (int i = 0; i < chains.size(); i++) { - chains.elementAt(i).makeResidueList(); + chains.elementAt(i).makeResidueList(VisibleChainAnnotation); } } @@ -452,8 +498,8 @@ public class PDBfile extends jalview.io.AlignFile { for (int i = 0; i < chains.size(); i++) { - chains.elementAt(i).setChainColours(Color.getHSBColor( - 1.0f / i, .4f, 1.0f)); + chains.elementAt(i).setChainColours( + Color.getHSBColor(1.0f / i, .4f, 1.0f)); } }