Skip to content

Commit 11f9438

Browse files
committed
update parsing test
1 parent 2a5b021 commit 11f9438

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/test/groovy/cz/siret/prank/domain/ProteinParsingTest.groovy

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package cz.siret.prank.domain
22

33
import groovy.transform.CompileStatic
44
import groovy.util.logging.Slf4j
5+
import org.junit.jupiter.api.Disabled
56
import org.junit.jupiter.api.Test
67

78
/**
@@ -13,12 +14,15 @@ class ProteinParsingTest {
1314

1415
static final String DIR = 'src/test/resources/data/tricky_cases/parsing'
1516

16-
17+
/**
18+
* Test parsing PDBe specific "updates cifs"
19+
*/
20+
@Disabled // until solved in BioJava
1721
@Test
1822
void testParsePdbeUpdatedCif() {
1923
Protein protein = Protein.load("$DIR/4gqq.cif")
2024

21-
Protein protein2 = Protein.load("$DIR/4gqq_updated.cif") // failed in 2.5
25+
Protein protein2 = Protein.load("$DIR/4gqq_updated.cif") // failes in 2.5, still fails with BioJava 7.1.4
2226
}
2327

2428
@Test

0 commit comments

Comments
 (0)