JAL-3855 detect an alphafold model and import its temperature factor as reliability
[jalview.git] / src / mc_view / PDBfile.java
index 04eda42..24e0435 100755 (executable)
@@ -154,7 +154,8 @@ public class PDBfile extends StructureFile
             tmpchain.atoms.addElement(tmpatom);
           } else
           {
-            tmpchain = new PDBChain(getId(), tmpatom.chain);
+            // PDBfile never handles alphafold models, so false
+            tmpchain = new PDBChain(getId(), tmpatom.chain, false);
             getChains().add(tmpchain);
             tmpchain.atoms.addElement(tmpatom);
           }