Skip to content

Commit e94f047

Browse files
committed
increase QCP precision threshold (try to fix #914)
1 parent 58efc46 commit e94f047

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

biojava-structure/src/main/java/org/biojava/nbio/structure/geometry/SuperPositionQCP.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public final class SuperPositionQCP extends SuperPositionAbstract {
111111

112112
private static final Logger logger = LoggerFactory.getLogger(SuperPositionQCP.class);
113113

114-
private double evec_prec = 1E-6;
114+
private double evec_prec = 1E-3;
115115
private double eval_prec = 1E-11;
116116

117117
private Point3d[] x;

biojava-structure/src/test/java/org/biojava/nbio/structure/io/TestHardBioUnits.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,6 @@ public void test4A1I() throws IOException, StructureException {
107107
String pdbId = "4A1I";
108108
int biolAssemblyNr = 2;
109109

110-
AtomCache atomCache = new AtomCache();
111-
// TODO there seem to be numerical instabilities when parsing BCIF
112-
atomCache.setFiletype(StructureFiletype.CIF);
113-
StructureIO.setAtomCache(atomCache);
114110
Structure bioAssembly = StructureIO.getBiologicalAssembly(pdbId,biolAssemblyNr);
115111

116112
if ( bioAssembly == null){

0 commit comments

Comments
 (0)