File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
biojava-structure/src/test/java/org/biojava/nbio/structure/align/util Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -102,13 +102,14 @@ public void tearDown() {
102102 */
103103 @ Test
104104 public void testGetStructureForDomain1 () throws IOException , StructureException {
105- String ranges = "A:328-396,B:518-527" ;
106- Structure whole = cache .getStructure ("1h6w" );
105+ // note that prior to Apr 2023, the example here was 1h6w, but it was obsoleted
106+ String ranges = "A:246-262,B:263-345" ;
107+ Structure whole = cache .getStructure ("3bzy" );
107108 AtomPositionMap map = new AtomPositionMap (StructureTools .getAllAtomArray (whole ), AtomPositionMap .ANYTHING_MATCHER );
108109 List <ResidueRangeAndLength > rrs = ResidueRangeAndLength .parseMultiple (ranges , map );
109110 int expectedLengthA = rrs .get (0 ).getLength ();
110111 int expectedLengthB = rrs .get (1 ).getLength ();
111- Structure structure = cache .getStructureForDomain ("d1h6w.2 " );
112+ Structure structure = cache .getStructureForDomain ("d3bzy.1 " );
112113 assertEquals (2 , structure .getPolyChains ().size ());
113114 Chain a = structure .getPolyChainByPDB ("A" );
114115 Chain b = structure .getPolyChainByPDB ("B" );
You can’t perform that action at this time.
0 commit comments