From: Jim Procter Date: Fri, 10 Oct 2014 15:22:24 +0000 (+0100) Subject: JAL-674 parser flag to control secondary structure processing X-Git-Tag: Jalview_2_9~169^2~35 X-Git-Url: http://source.jalview.org/gitweb/?p=jalview.git;a=commitdiff_plain;h=138f7c321c983ab59d4e920518fce401aa1061f0 JAL-674 parser flag to control secondary structure processing --- diff --git a/src/MCview/PDBfile.java b/src/MCview/PDBfile.java index 7f5c427..bc58c9a 100755 --- a/src/MCview/PDBfile.java +++ b/src/MCview/PDBfile.java @@ -42,6 +42,7 @@ public class PDBfile extends jalview.io.AlignFile boolean VisibleChainAnnotation = false; public PDBfile(String inFile, String inType) throws IOException + boolean processSecondaryStructure=true; { super(inFile, inType); } @@ -202,6 +203,8 @@ public class PDBfile extends jalview.io.AlignFile } } } + if (processSecondaryStructure) + { if (rna.size() > 0) try { @@ -225,19 +228,7 @@ public class PDBfile extends jalview.io.AlignFile x.printStackTrace(); } - ; - if (prot.size() > 0) - try - { - processPdbFileWithJmol(prot); - } catch (Exception x) - { - System.err - .println("Exceptions when dealing with RNA in pdb file"); - x.printStackTrace(); - - } - ; + } } catch (OutOfMemoryError er) { System.out.println("OUT OF MEMORY LOADING PDB FILE");