File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
src/test/groovy/cz/siret/prank/domain Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package cz.siret.prank.domain
2
2
3
3
import groovy.transform.CompileStatic
4
4
import groovy.util.logging.Slf4j
5
+ import org.junit.jupiter.api.Disabled
5
6
import org.junit.jupiter.api.Test
6
7
7
8
/**
@@ -13,12 +14,15 @@ class ProteinParsingTest {
13
14
14
15
static final String DIR = ' src/test/resources/data/tricky_cases/parsing'
15
16
16
-
17
+ /**
18
+ * Test parsing PDBe specific "updates cifs"
19
+ */
20
+ @Disabled // until solved in BioJava
17
21
@Test
18
22
void testParsePdbeUpdatedCif () {
19
23
Protein protein = Protein . load(" $DIR /4gqq.cif" )
20
24
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
22
26
}
23
27
24
28
@Test
You can’t perform that action at this time.
0 commit comments