Skip to content

Commit 44d7351

Browse files
committed
Merge branch 'master' of github.com:biojava/biojava into serialize
2 parents 5feb565 + 5f138f3 commit 44d7351

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

biojava-integrationtest/src/test/java/org/biojava/nbio/structure/test/symmetry/TestQuatSymmetryDetectorExamples.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ public class TestQuatSymmetryDetectorExamples {
5555
@Test
5656
public void testNMR() throws IOException, StructureException {
5757

58-
Structure pdb = StructureIO.getStructure("BIO:1b4c:1");
58+
// as of mmCIF v5 there's no bioassemblies for NMR entries, so now we use the AU (bioassembly 0) - JD 2017-08-02
59+
Structure pdb = StructureIO.getStructure("BIO:1b4c:0");
5960

6061
SubunitClustererParameters clusterParams = new SubunitClustererParameters();
6162
QuatSymmetryParameters symmParams = new QuatSymmetryParameters();

biojava-structure/src/test/java/org/biojava/nbio/structure/align/util/AtomCacheTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ public void testGetStructureForChainlessDomains() throws IOException, StructureE
150150
assertEquals(expectedLengthA, a.getAtomGroups().size());
151151

152152

153-
assertTrue(structure.hasNonPolyChain("M"));
154-
assertTrue(structure.hasNonPolyChain("N"));
153+
assertTrue(structure.hasNonPolyChain("G"));
154+
assertTrue(structure.hasNonPolyChain("H"));
155155

156-
Chain copper = structure.getNonPolyChain("M");
156+
Chain copper = structure.getNonPolyChain("I");
157157
assertEquals(1,copper.getAtomGroups().size());
158158

159159
}

0 commit comments

Comments
 (0)