JAL-2135 bugfix for error preventing processing of secondary structure annotation...
authortcofoegbu <tcnofoegbu@dundee.ac.uk>
Fri, 1 Jul 2016 10:08:43 +0000 (11:08 +0100)
committertcofoegbu <tcnofoegbu@dundee.ac.uk>
Fri, 1 Jul 2016 10:08:43 +0000 (11:08 +0100)
src/MCview/PDBChain.java
src/jalview/ext/jmol/JmolParser.java

index 073772a..248cf29 100755 (executable)
@@ -82,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;
   }
 
index 31ed1b7..309e196 100644 (file)
@@ -206,8 +206,8 @@ public class JmolParser extends StructureFile implements JmolStatusListener
     List<Atom> significantAtoms = new ArrayList<Atom>();
     for (org.jmol.modelset.Atom atom : ms.at)
     {
-      System.out.println("Seq Id : " + atom.getSeqID());
-      System.out.println("To String : " + atom.toString());
+      // System.out.println("Seq Id : " + atom.getSeqID());
+      // System.out.println("To String : " + atom.toString());
       if (atom.isHetero())
       {
         continue;