monarch-initiative / omim

Data ingest pipeline for OMIM.
6 stars 2 forks source link

Release: Include `omim.sssom.tsv` to GH action #92

Closed joeflack4 closed 12 months ago

joeflack4 commented 1 year ago

Overview

Currently, omim.sssom.tsv can't be recreated because this command won't work: sssom parse omim.json -I obographs-json -m data/metadata.sssom.yml -o omim.sssom.tsv. This command fails because of missing robot dependency. I need to figure out how to include arbitrary binaries in a GitHub action.

Sub-tasks list

Sub-task details

1. Get robot to run

Possible solutions

a. ~Maybe I can simply download robot / robot.jar and place them in the root of the repo, either committing them, or downloading them at the start of the action.~ b. ~But maybe there's a better practice.~ c. ~Personally, I've always thought the best thing would be to create some onto-robo-py package that simply is a wrapper around robot.jar and calls it via a subprocess.~ d. Run the action in ODK (#97) <--------

2. OBO GRAPH ERROR

When running robot convert -i omim.ttl -o omim.json as a pre-step to doing sssom parse omim.json..., I get an error, but the cause is not known. I imagine that it has to do with the version of robot being different in ODK than what I was previously using to convert on my local machine. Nothing has changed significantly with the OMIM pipeline in a while.

joeflack4 commented 1 year ago

@matentzn The omim.sssom.tsv being released since I created this action was old, never being recreated. I just deactivated from including it in the release.

This is currently marked "Low" urgency. Can you increase and let me know if it should be a higher priority?

matentzn commented 1 year ago

Just always run everything in ODK - there is no need for custom install procedures! All dependencies you will need are in there.

joeflack4 commented 1 year ago

@matentzn Alright, that makes sense. If you remember, we previously were not able to use ODK in GitHub actions, I think due to memory constraints. I'm going to reach out to @hrshdhgd for this though, as I believe he was somewhat recently able to get it to work.

joeflack4 commented 1 year ago

@matentzn I though Harshad was able to get ODK to work in a GitHub action but he told me that is not the case. I don't know if you remember us speaking about how this was difficult / impossible fore. Do you want me to try? I would imagine this is a lower priority though than many of my other issues. In the interim, it would be much easier for me to implement solution 'a'.

matentzn commented 1 year ago

ODK works in hundreds of GHAs! Its very very easy. https://github.com/obophenotype/bio-attribute-ontology/blob/master/.github/workflows/qc.yml#L22

joeflack4 commented 1 year ago

That is great to hear. I'll go ahead and try and use this.

You probably remember we spoke about this a few different times in the past year? Maybe what you meant that everything couldn't be run due to memory issues, like NCIT, not that ODK / certain workflows couldn't be run. Because otherwise I'm sure we would use this in mondo-ingest as well.

matentzn commented 1 year ago

Yes, that's right. You cant build mondo ingest in GHA because of memory constraints

joeflack4 commented 1 year ago

@matentzn I got the ODK GitHub action working, but I'm getting a new OBO GRAPH ERROR. The short of it is that I'd like you to pick one of possible solutions 'a', 'b', or 'c'. 'c' seems the easiest and I think you were also fine with this approach many months ago (not because of error; but because we didn't need it).


Error message

OBO GRAPH ERROR Could not convert ontology to OBO Graph (see https://github.com/geneontology/obographs)
For details see: http://robot.obolibrary.org/errors#obo-graph-error

These parts of the log are the only thing indicative of the problem:

ERROR Input ontology contains 7310 triple(s) that could not be parsed:
_:genid-nodeid-node1h3dl19e1x7863 <https://w3id.org/biolink/vocab/has_evidence> Evidence: (3) The molecular basis for the disorder is known; a mutation has been found in the gene..
...
Hint: you have undeclared predicates - try adding 'rdf:type' declarations to the following:
 - https://w3id.org/biolink/vocab/has_evidence

Full log: log.txt

Investigation

I don't understand why it says "undeclared predicates". I have its namespace declared in the header and turtle triple syntax seems correct. I do notice that the namespace https://w3id.org/biolink/vocab/ doesn't resolve to anything machine readable, so it makes sense that no declarations can be pulled from there if robot needs to do that, but I have other biolink predicates (e.g. biolink:category) that are not throwing this same warning.

Header declaration:

@prefix biolink: <https://w3id.org/biolink/vocab/> .

Example usage:

[] a owl:Axiom ;
    rdfs:comment "Evidence: (3) The molecular basis for the disorder is known; a mutation has been found in the gene." ;
    owl:annotatedProperty rdfs:subClassOf ;
    owl:annotatedSource OMIM:300644 ;
    owl:annotatedTarget [ a owl:Restriction ;
            owl:onProperty RO:0003302 ;
            owl:someValuesFrom OMIM:301500 ] ;
    biolink:has_evidence "Evidence: (3) The molecular basis for the disorder is known; a mutation has been found in the gene." .

Possible solutions

a. Fix the declaration

I'm not sure how.

b. Filter stuff out

http://robot.obolibrary.org/errors#obo-graph-error suggests this:

This may be due to problematic annotations, so you can create a subset using filter or remove containing only the necessary annotations and save that as JSON, for example (keeping only labels and definitions):

robot remove --input ont.owl \
  --select annotation-properties \
  --exclude-term rdfs:label \
  --exclude-term IAO:0000115 \
  --output ont.json
c. We can remove biolink:has_evidence

I think at some point in the past you suggested we don't need it. Notice also that we are already including an additional evidence comment.

[] a owl:Axiom ;
    rdfs:comment "Evidence: (3) The molecular basis for the disorder is known; a mutation has been found in the gene." ;
    ...
    biolink:has_evidence "Evidence: (3) The molecular basis for the disorder is known; a mutation has been found in the gene." .
matentzn commented 1 year ago

For every annotation property in your ontology, add a triple:

my:annotationProperty rdf:type owl:AnnotationProperty

and try again, e.g.:

biolink:has_evidence rdf:type owl:AnnotationProperty

This is called a "declaration"

Some serialisation need this. A hack I think that could work is this:

  1. First convert omim.ttl to functional syntax (ofn) with ROBOT, write out.
  2. Then read the output of 1 and try to convert into obographs

But better to inject declarations from the start into the TTL file.

joeflack4 commented 1 year ago

Ah, ok. Thanks for these solutions! I like the first proposal of simply adding the declaration. I see now that the reason that it was unhappy about biolink:has_evidence and not some of the other biolink preds is because it was used in an annotation property.

joeflack4 commented 1 year ago

@matentzn Hmm... so I gave it a shot, but it's still giving an OBO GRAPH ERROR, except this time I can't find any useful information in the log or stacktrace.

Attempts

Attempt 1: Adding the missing declaration

I added biolink:has_evidence rdf:type owl:AnnotationProperty and re-ran, and I didn't get any errors/warnings about it anymore, so that's good. But I still got an OBO GRAPH ERROR, with no indication as to what's causing it.

Log ``` robot convert -vvv -i omim.ttl -o omim.json DEBUG Loading ontology omim.ttl with catalog file null DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Injecting object uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl@50468873 DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyIRIMapper DEBUG No files found for META-INF/services/org.semanticweb.owlapi.model.OWLOntologyIRIMapper DEBUG Injecting values [[]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setIRIMappers(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Injecting values [[org.semanticweb.owlapi.rio.RioJsonLDParserFactory@362045c0, org.semanticweb.owlapi.oboformat.OBOFormatOWLAPIParserFactory@1ecee32c, org.semanticweb.owlapi.rio.RioNQuadsParserFactory@42463763, org.semanticweb.owlapi.rio.RioRDFXMLParserFactory@294e5088, org.semanticweb.owlapi.rio.RioTrixParserFactory@d3957fe, org.semanticweb.owlapi.rio.RioN3ParserFactory@3016fd5e, org.semanticweb.owlapi.functional.parser.OWLFunctionalSyntaxOWLParserFactory@30b19518, org.semanticweb.owlapi.rio.RioRDFaParserFactory@2807bdeb, org.semanticweb.owlapi.rio.RioTrigParserFactory@24d09c1, org.semanticweb.owlapi.rio.RioTurtleParserFactory@5e1fa5b1, org.semanticweb.owlapi.rdf.turtle.parser.TurtleOntologyParserFactory@5d9b7a8a, org.semanticweb.owlapi.manchestersyntax.parser.ManchesterOWLSyntaxOntologyParserFactory@2a640157, org.semanticweb.owlapi.rio.RioBinaryRdfParserFactory@56113384, org.semanticweb.owlapi.krss2.parser.KRSS2OWLParserFactory@ff684e1, org.semanticweb.owlapi.owlxml.parser.OWLXMLParserFactory@44b3606b, org.semanticweb.owlapi.rio.RioJsonParserFactory@241e8ea6, org.semanticweb.owlapi.rdf.rdfxml.parser.RDFXMLParserFactory@5b202a3a, org.semanticweb.owlapi.rio.RioNTriplesParserFactory@613a8ee1]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyParsers(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Injecting values [[uk.ac.manchester.cs.owl.owlapi.OWLOntologyFactoryImpl@3a6f2de3]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyFactories(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Injecting values [[org.semanticweb.owlapi.rdf.turtle.renderer.TurtleStorerFactory@7e7b159b, org.semanticweb.owlapi.rio.RioTrigStorerFactory@4233e892, org.semanticweb.owlapi.oboformat.OBOFormatStorerFactory@5c08c46a, org.semanticweb.owlapi.rio.RioN3StorerFactory@333dd51e, org.semanticweb.owlapi.functional.renderer.FunctionalSyntaxStorerFactory@a43ce46, org.semanticweb.owlapi.rio.RioJsonStorerFactory@4097cac, org.semanticweb.owlapi.dlsyntax.renderer.DLSyntaxHTMLStorerFactory@2d36e77e, org.semanticweb.owlapi.latex.renderer.LatexStorerFactory@2dd29a59, org.semanticweb.owlapi.rdf.rdfxml.renderer.RDFXMLStorerFactory@65fe9e33, org.semanticweb.owlapi.rio.RioNQuadsStorerFactory@710b18a6, org.semanticweb.owlapi.rio.RioJsonLDStorerFactory@6f2cfcc2, org.semanticweb.owlapi.manchestersyntax.renderer.ManchesterSyntaxStorerFactory@2320fa6f, org.semanticweb.owlapi.dlsyntax.renderer.DLSyntaxStorerFactory@8c11eee, org.semanticweb.owlapi.owlxml.renderer.OWLXMLStorerFactory@3724af13, org.semanticweb.owlapi.rio.RioTrixStorerFactory@555cf22, org.semanticweb.owlapi.rio.RioNTriplesStorerFactory@25e2ab5a, org.semanticweb.owlapi.rio.RioBinaryRdfStorerFactory@c35172e, org.semanticweb.owlapi.rio.RioRDFXMLStorerFactory@655ef322, org.semanticweb.owlapi.rio.RioTurtleStorerFactory@319bc845, org.semanticweb.owlapi.krss2.renderer.KRSS2OWLSyntaxStorerFactory@77a7cf58]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyStorers(java.util.Set). DEBUG Registered service class org.semanticweb.owlapi.rio.RioFunctionalSyntaxParserFactory DEBUG Registered service class org.semanticweb.owlapi.rio.RioManchesterSyntaxParserFactory DEBUG Registered service class org.semanticweb.owlapi.rio.RioOWLXMLParserFactory DEBUG Registered service class org.openrdf.rio.binary.BinaryRDFParserFactory DEBUG Registered service class org.openrdf.rio.n3.N3ParserFactory DEBUG Registered service class org.openrdf.rio.nquads.NQuadsParserFactory DEBUG Registered service class org.openrdf.rio.ntriples.NTriplesParserFactory DEBUG Registered service class org.openrdf.rio.rdfjson.RDFJSONParserFactory DEBUG Registered service class org.openrdf.rio.rdfxml.RDFXMLParserFactory DEBUG Registered service class org.openrdf.rio.trix.TriXParserFactory DEBUG Registered service class org.openrdf.rio.turtle.TurtleParserFactory DEBUG Registered service class org.openrdf.rio.trig.TriGParserFactory DEBUG Registered service class com.github.jsonldjava.sesame.SesameJSONLDParserFactory DEBUG Registered service class org.semarglproject.sesame.rdf.rdfa.SesameRDFaParserFactory DEBUG Registered service class org.openrdf.rio.datatypes.XMLSchemaDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.RDFDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.DBPediaDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.VirtuosoGeometryDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.GeoSPARQLDatatypeHandler DEBUG Registered service class org.openrdf.rio.languages.RFC3066LanguageHandler DEBUG Parsed: 10000 triples DEBUG Parsed: 20000 triples DEBUG Parsed: 30000 triples DEBUG Parsed: 40000 triples DEBUG Parsed: 50000 triples DEBUG Parsed: 60000 triples DEBUG Parsed: 70000 triples DEBUG Parsed: 80000 triples DEBUG Parsed: 90000 triples DEBUG Parsed: 100000 triples DEBUG Parsed: 110000 triples DEBUG Parsed: 120000 triples DEBUG Parsed: 130000 triples DEBUG Parsed: 140000 triples DEBUG Parsed: 150000 triples DEBUG Parsed: 160000 triples DEBUG Parsed: 170000 triples DEBUG Parsed: 180000 triples DEBUG Parsed: 190000 triples DEBUG Parsed: 200000 triples DEBUG Parsed: 210000 triples DEBUG Parsed: 220000 triples DEBUG Parsed: 230000 triples DEBUG Parsed: 240000 triples DEBUG Parsed: 250000 triples DEBUG Parsed: 260000 triples DEBUG Parsed: 270000 triples DEBUG Parsed: 280000 triples DEBUG Parsed: 290000 triples DEBUG Parsed: 300000 triples DEBUG Parsed: 310000 triples DEBUG Parsed: 320000 triples DEBUG Parsed: 330000 triples DEBUG Parsed: 340000 triples DEBUG Parsed: 350000 triples DEBUG Parsed: 360000 triples DEBUG Parsed: 370000 triples DEBUG Parsed: 380000 triples DEBUG Parsed: 390000 triples DEBUG Parsed: 400000 triples DEBUG Parsed: 410000 triples DEBUG Parsed: 420000 triples DEBUG Parsed: 430000 triples DEBUG Total number of triples: 432624 DEBUG 1000: Annotations Cache stats: CacheStats{hitCount=318, missCount=682, loadSuccessCount=682, loadFailureCount=0, totalLoadTime=420275, evictionCount=161, evictionWeight=161} DEBUG 2000: Annotations Cache stats: CacheStats{hitCount=515, missCount=1485, loadSuccessCount=1485, loadFailureCount=0, totalLoadTime=556548, evictionCount=963, evictionWeight=963} DEBUG 3000: Annotations Cache stats: CacheStats{hitCount=752, missCount=2248, loadSuccessCount=2248, loadFailureCount=0, totalLoadTime=625823, evictionCount=1734, evictionWeight=1734} DEBUG 4000: Annotations Cache stats: CacheStats{hitCount=1017, missCount=2983, loadSuccessCount=2983, loadFailureCount=0, totalLoadTime=697436, evictionCount=2469, evictionWeight=2469} DEBUG 5000: Annotations Cache stats: CacheStats{hitCount=1274, missCount=3726, loadSuccessCount=3726, loadFailureCount=0, totalLoadTime=766273, evictionCount=3212, evictionWeight=3212} DEBUG 6000: Annotations Cache stats: CacheStats{hitCount=1490, missCount=4510, loadSuccessCount=4510, loadFailureCount=0, totalLoadTime=837738, evictionCount=3995, evictionWeight=3995} DEBUG 7000: Annotations Cache stats: CacheStats{hitCount=1790, missCount=5210, loadSuccessCount=5210, loadFailureCount=0, totalLoadTime=898762, evictionCount=4696, evictionWeight=4696} DEBUG 8000: Annotations Cache stats: CacheStats{hitCount=2157, missCount=5843, loadSuccessCount=5843, loadFailureCount=0, totalLoadTime=957506, evictionCount=5328, evictionWeight=5328} DEBUG 9000: Annotations Cache stats: CacheStats{hitCount=2487, missCount=6513, loadSuccessCount=6513, loadFailureCount=0, totalLoadTime=1016085, evictionCount=5998, evictionWeight=5998} DEBUG 10000: Annotations Cache stats: CacheStats{hitCount=2786, missCount=7214, loadSuccessCount=7214, loadFailureCount=0, totalLoadTime=1067439, evictionCount=6697, evictionWeight=6697} DEBUG 11000: Annotations Cache stats: CacheStats{hitCount=2993, missCount=8007, loadSuccessCount=8007, loadFailureCount=0, totalLoadTime=1127209, evictionCount=7483, evictionWeight=7483} DEBUG 12000: Annotations Cache stats: CacheStats{hitCount=3263, missCount=8737, loadSuccessCount=8737, loadFailureCount=0, totalLoadTime=1182081, evictionCount=8222, evictionWeight=8222} DEBUG 13000: Annotations Cache stats: CacheStats{hitCount=3547, missCount=9453, loadSuccessCount=9453, loadFailureCount=0, totalLoadTime=1245727, evictionCount=8940, evictionWeight=8940} DEBUG 14000: Annotations Cache stats: CacheStats{hitCount=3773, missCount=10227, loadSuccessCount=10227, loadFailureCount=0, totalLoadTime=1303621, evictionCount=9712, evictionWeight=9712} DEBUG 15000: Annotations Cache stats: CacheStats{hitCount=4138, missCount=10862, loadSuccessCount=10862, loadFailureCount=0, totalLoadTime=1392165, evictionCount=10349, evictionWeight=10349} DEBUG 16000: Annotations Cache stats: CacheStats{hitCount=4394, missCount=11606, loadSuccessCount=11606, loadFailureCount=0, totalLoadTime=1465070, evictionCount=11093, evictionWeight=11093} DEBUG 17000: Annotations Cache stats: CacheStats{hitCount=4649, missCount=12351, loadSuccessCount=12351, loadFailureCount=0, totalLoadTime=1550120, evictionCount=11791, evictionWeight=11791} DEBUG 18000: Annotations Cache stats: CacheStats{hitCount=4931, missCount=13069, loadSuccessCount=13069, loadFailureCount=0, totalLoadTime=1594852, evictionCount=12553, evictionWeight=12553} DEBUG 19000: Annotations Cache stats: CacheStats{hitCount=5222, missCount=13778, loadSuccessCount=13778, loadFailureCount=0, totalLoadTime=1636202, evictionCount=13255, evictionWeight=13255} DEBUG 20000: Annotations Cache stats: CacheStats{hitCount=5492, missCount=14508, loadSuccessCount=14508, loadFailureCount=0, totalLoadTime=1670737, evictionCount=13994, evictionWeight=13994} DEBUG 21000: Annotations Cache stats: CacheStats{hitCount=5778, missCount=15222, loadSuccessCount=15222, loadFailureCount=0, totalLoadTime=1700840, evictionCount=14709, evictionWeight=14709} DEBUG 22000: Annotations Cache stats: CacheStats{hitCount=6026, missCount=15974, loadSuccessCount=15974, loadFailureCount=0, totalLoadTime=1732507, evictionCount=15455, evictionWeight=15455} DEBUG 23000: Annotations Cache stats: CacheStats{hitCount=6262, missCount=16738, loadSuccessCount=16738, loadFailureCount=0, totalLoadTime=1763920, evictionCount=16223, evictionWeight=16223} DEBUG 24000: Annotations Cache stats: CacheStats{hitCount=6544, missCount=17456, loadSuccessCount=17456, loadFailureCount=0, totalLoadTime=1794062, evictionCount=16938, evictionWeight=16939} DEBUG 25000: Annotations Cache stats: CacheStats{hitCount=6816, missCount=18184, loadSuccessCount=18184, loadFailureCount=0, totalLoadTime=1822281, evictionCount=17363, evictionWeight=17363} DEBUG 26000: Annotations Cache stats: CacheStats{hitCount=7076, missCount=18924, loadSuccessCount=18924, loadFailureCount=0, totalLoadTime=1851604, evictionCount=18409, evictionWeight=18409} DEBUG 27000: Annotations Cache stats: CacheStats{hitCount=7278, missCount=19722, loadSuccessCount=19722, loadFailureCount=0, totalLoadTime=1886358, evictionCount=19195, evictionWeight=19195} DEBUG 28000: Annotations Cache stats: CacheStats{hitCount=7596, missCount=20404, loadSuccessCount=20404, loadFailureCount=0, totalLoadTime=1918532, evictionCount=19887, evictionWeight=19887} DEBUG 29000: Annotations Cache stats: CacheStats{hitCount=7870, missCount=21130, loadSuccessCount=21130, loadFailureCount=0, totalLoadTime=1953163, evictionCount=20617, evictionWeight=20617} DEBUG 30000: Annotations Cache stats: CacheStats{hitCount=8171, missCount=21829, loadSuccessCount=21829, loadFailureCount=0, totalLoadTime=1987079, evictionCount=21313, evictionWeight=21313} DEBUG 31000: Annotations Cache stats: CacheStats{hitCount=8447, missCount=22553, loadSuccessCount=22553, loadFailureCount=0, totalLoadTime=2021899, evictionCount=22037, evictionWeight=22037} DEBUG 32000: Annotations Cache stats: CacheStats{hitCount=8790, missCount=23210, loadSuccessCount=23210, loadFailureCount=0, totalLoadTime=2053184, evictionCount=22694, evictionWeight=22694} DEBUG 33000: Annotations Cache stats: CacheStats{hitCount=9010, missCount=23990, loadSuccessCount=23990, loadFailureCount=0, totalLoadTime=2090732, evictionCount=23475, evictionWeight=23475} DEBUG 34000: Annotations Cache stats: CacheStats{hitCount=9225, missCount=24775, loadSuccessCount=24775, loadFailureCount=0, totalLoadTime=2128095, evictionCount=24250, evictionWeight=24250} DEBUG 35000: Annotations Cache stats: CacheStats{hitCount=9560, missCount=25440, loadSuccessCount=25440, loadFailureCount=0, totalLoadTime=2160044, evictionCount=24925, evictionWeight=24925} DEBUG 36000: Annotations Cache stats: CacheStats{hitCount=9887, missCount=26113, loadSuccessCount=26113, loadFailureCount=0, totalLoadTime=2192537, evictionCount=25596, evictionWeight=25596} DEBUG 37000: Annotations Cache stats: CacheStats{hitCount=10095, missCount=26905, loadSuccessCount=26905, loadFailureCount=0, totalLoadTime=2231486, evictionCount=26390, evictionWeight=26390} DEBUG 38000: Annotations Cache stats: CacheStats{hitCount=10279, missCount=27721, loadSuccessCount=27721, loadFailureCount=0, totalLoadTime=2271146, evictionCount=27197, evictionWeight=27197} DEBUG 39000: Annotations Cache stats: CacheStats{hitCount=10622, missCount=28378, loadSuccessCount=28378, loadFailureCount=0, totalLoadTime=2303770, evictionCount=27864, evictionWeight=27864} DEBUG 40000: Annotations Cache stats: CacheStats{hitCount=10925, missCount=29075, loadSuccessCount=29075, loadFailureCount=0, totalLoadTime=2338652, evictionCount=28561, evictionWeight=28561} DEBUG 41000: Annotations Cache stats: CacheStats{hitCount=11191, missCount=29809, loadSuccessCount=29809, loadFailureCount=0, totalLoadTime=2375509, evictionCount=29291, evictionWeight=29291} DEBUG 42000: Annotations Cache stats: CacheStats{hitCount=11454, missCount=30546, loadSuccessCount=30546, loadFailureCount=0, totalLoadTime=2411857, evictionCount=30032, evictionWeight=30032} DEBUG 43000: Annotations Cache stats: CacheStats{hitCount=11751, missCount=31249, loadSuccessCount=31249, loadFailureCount=0, totalLoadTime=2449475, evictionCount=30735, evictionWeight=30735} DEBUG 44000: Annotations Cache stats: CacheStats{hitCount=12028, missCount=31972, loadSuccessCount=31972, loadFailureCount=0, totalLoadTime=2483904, evictionCount=31460, evictionWeight=31460} DEBUG 45000: Annotations Cache stats: CacheStats{hitCount=12322, missCount=32678, loadSuccessCount=32678, loadFailureCount=0, totalLoadTime=2517287, evictionCount=32160, evictionWeight=32160} DEBUG 46000: Annotations Cache stats: CacheStats{hitCount=12689, missCount=33311, loadSuccessCount=33311, loadFailureCount=0, totalLoadTime=2548771, evictionCount=32790, evictionWeight=32790} DEBUG 47000: Annotations Cache stats: CacheStats{hitCount=12996, missCount=34004, loadSuccessCount=34004, loadFailureCount=0, totalLoadTime=2582511, evictionCount=33486, evictionWeight=33486} DEBUG 48000: Annotations Cache stats: CacheStats{hitCount=13245, missCount=34755, loadSuccessCount=34755, loadFailureCount=0, totalLoadTime=2618959, evictionCount=34236, evictionWeight=34236} DEBUG 49000: Annotations Cache stats: CacheStats{hitCount=13595, missCount=35405, loadSuccessCount=35405, loadFailureCount=0, totalLoadTime=2651629, evictionCount=34892, evictionWeight=34892} DEBUG 50000: Annotations Cache stats: CacheStats{hitCount=13769, missCount=36231, loadSuccessCount=36231, loadFailureCount=0, totalLoadTime=2692660, evictionCount=35718, evictionWeight=35718} DEBUG 51000: Annotations Cache stats: CacheStats{hitCount=14021, missCount=36979, loadSuccessCount=36979, loadFailureCount=0, totalLoadTime=2729370, evictionCount=36461, evictionWeight=36461} DEBUG 52000: Annotations Cache stats: CacheStats{hitCount=14245, missCount=37755, loadSuccessCount=37755, loadFailureCount=0, totalLoadTime=2763902, evictionCount=36868, evictionWeight=36868} DEBUG 53000: Annotations Cache stats: CacheStats{hitCount=14549, missCount=38451, loadSuccessCount=38451, loadFailureCount=0, totalLoadTime=2795857, evictionCount=37928, evictionWeight=37928} DEBUG 54000: Annotations Cache stats: CacheStats{hitCount=14838, missCount=39162, loadSuccessCount=39162, loadFailureCount=0, totalLoadTime=2832906, evictionCount=38649, evictionWeight=38649} DEBUG 55000: Annotations Cache stats: CacheStats{hitCount=15092, missCount=39908, loadSuccessCount=39908, loadFailureCount=0, totalLoadTime=2874200, evictionCount=39395, evictionWeight=39395} DEBUG 56000: Annotations Cache stats: CacheStats{hitCount=15443, missCount=40557, loadSuccessCount=40557, loadFailureCount=0, totalLoadTime=2911999, evictionCount=40039, evictionWeight=40039} DEBUG 57000: Annotations Cache stats: CacheStats{hitCount=15702, missCount=41298, loadSuccessCount=41298, loadFailureCount=0, totalLoadTime=2952945, evictionCount=40774, evictionWeight=40774} DEBUG 58000: Annotations Cache stats: CacheStats{hitCount=15920, missCount=42080, loadSuccessCount=42080, loadFailureCount=0, totalLoadTime=2996132, evictionCount=41562, evictionWeight=41562} DEBUG 59000: Annotations Cache stats: CacheStats{hitCount=16059, missCount=42941, loadSuccessCount=42941, loadFailureCount=0, totalLoadTime=3042687, evictionCount=42428, evictionWeight=42428} DEBUG 60000: Annotations Cache stats: CacheStats{hitCount=16363, missCount=43637, loadSuccessCount=43637, loadFailureCount=0, totalLoadTime=3080812, evictionCount=43122, evictionWeight=43122} DEBUG 61000: Annotations Cache stats: CacheStats{hitCount=16661, missCount=44339, loadSuccessCount=44339, loadFailureCount=0, totalLoadTime=3120380, evictionCount=43826, evictionWeight=43826} DEBUG 62000: Annotations Cache stats: CacheStats{hitCount=16879, missCount=45121, loadSuccessCount=45121, loadFailureCount=0, totalLoadTime=3164310, evictionCount=44606, evictionWeight=44606} DEBUG 63000: Annotations Cache stats: CacheStats{hitCount=17185, missCount=45815, loadSuccessCount=45815, loadFailureCount=0, totalLoadTime=3202922, evictionCount=45300, evictionWeight=45300} DEBUG 64000: Annotations Cache stats: CacheStats{hitCount=17453, missCount=46547, loadSuccessCount=46547, loadFailureCount=0, totalLoadTime=3259160, evictionCount=46014, evictionWeight=46014} DEBUG 65000: Annotations Cache stats: CacheStats{hitCount=17663, missCount=47337, loadSuccessCount=47337, loadFailureCount=0, totalLoadTime=3301644, evictionCount=46819, evictionWeight=46819} DEBUG 66000: Annotations Cache stats: CacheStats{hitCount=17957, missCount=48043, loadSuccessCount=48043, loadFailureCount=0, totalLoadTime=3339914, evictionCount=47527, evictionWeight=47527} DEBUG 67000: Annotations Cache stats: CacheStats{hitCount=18190, missCount=48810, loadSuccessCount=48810, loadFailureCount=0, totalLoadTime=3380167, evictionCount=48295, evictionWeight=48295} DEBUG 68000: Annotations Cache stats: CacheStats{hitCount=18501, missCount=49499, loadSuccessCount=49499, loadFailureCount=0, totalLoadTime=3417601, evictionCount=48981, evictionWeight=48981} DEBUG 69000: Annotations Cache stats: CacheStats{hitCount=18810, missCount=50190, loadSuccessCount=50190, loadFailureCount=0, totalLoadTime=3453889, evictionCount=49676, evictionWeight=49676} DEBUG 70000: Annotations Cache stats: CacheStats{hitCount=19133, missCount=50867, loadSuccessCount=50867, loadFailureCount=0, totalLoadTime=3489755, evictionCount=50354, evictionWeight=50354} DEBUG 71000: Annotations Cache stats: CacheStats{hitCount=19385, missCount=51615, loadSuccessCount=51615, loadFailureCount=0, totalLoadTime=3528255, evictionCount=51098, evictionWeight=51098} DEBUG 72000: Annotations Cache stats: CacheStats{hitCount=19675, missCount=52325, loadSuccessCount=52325, loadFailureCount=0, totalLoadTime=3563794, evictionCount=51813, evictionWeight=51813} DEBUG 73000: Annotations Cache stats: CacheStats{hitCount=19937, missCount=53063, loadSuccessCount=53063, loadFailureCount=0, totalLoadTime=3599393, evictionCount=52543, evictionWeight=52543} DEBUG 74000: Annotations Cache stats: CacheStats{hitCount=20300, missCount=53700, loadSuccessCount=53700, loadFailureCount=0, totalLoadTime=3629398, evictionCount=53187, evictionWeight=53187} DEBUG 75000: Annotations Cache stats: CacheStats{hitCount=20576, missCount=54424, loadSuccessCount=54424, loadFailureCount=0, totalLoadTime=3665236, evictionCount=53911, evictionWeight=53911} DEBUG 76000: Annotations Cache stats: CacheStats{hitCount=20845, missCount=55155, loadSuccessCount=55155, loadFailureCount=0, totalLoadTime=3702501, evictionCount=54633, evictionWeight=54633} DEBUG 77000: Annotations Cache stats: CacheStats{hitCount=21155, missCount=55845, loadSuccessCount=55845, loadFailureCount=0, totalLoadTime=3738193, evictionCount=55317, evictionWeight=55317} DEBUG 78000: Annotations Cache stats: CacheStats{hitCount=21459, missCount=56541, loadSuccessCount=56541, loadFailureCount=0, totalLoadTime=3772785, evictionCount=56024, evictionWeight=56024} DEBUG 79000: Annotations Cache stats: CacheStats{hitCount=21764, missCount=57236, loadSuccessCount=57236, loadFailureCount=0, totalLoadTime=3807230, evictionCount=56721, evictionWeight=56721} DEBUG 80000: Annotations Cache stats: CacheStats{hitCount=22018, missCount=57982, loadSuccessCount=57982, loadFailureCount=0, totalLoadTime=3845292, evictionCount=57460, evictionWeight=57460} DEBUG 81000: Annotations Cache stats: CacheStats{hitCount=22251, missCount=58749, loadSuccessCount=58749, loadFailureCount=0, totalLoadTime=3885996, evictionCount=58234, evictionWeight=58234} DEBUG 82000: Annotations Cache stats: CacheStats{hitCount=22515, missCount=59485, loadSuccessCount=59485, loadFailureCount=0, totalLoadTime=3924114, evictionCount=58971, evictionWeight=58971} DEBUG 83000: Annotations Cache stats: CacheStats{hitCount=22825, missCount=60175, loadSuccessCount=60175, loadFailureCount=0, totalLoadTime=3960372, evictionCount=59662, evictionWeight=59662} DEBUG 84000: Annotations Cache stats: CacheStats{hitCount=23098, missCount=60902, loadSuccessCount=60902, loadFailureCount=0, totalLoadTime=3998874, evictionCount=60389, evictionWeight=60389} DEBUG 85000: Annotations Cache stats: CacheStats{hitCount=23391, missCount=61609, loadSuccessCount=61609, loadFailureCount=0, totalLoadTime=4035105, evictionCount=61096, evictionWeight=61096} DEBUG 86000: Annotations Cache stats: CacheStats{hitCount=23663, missCount=62337, loadSuccessCount=62337, loadFailureCount=0, totalLoadTime=4072375, evictionCount=61824, evictionWeight=61824} DEBUG 87000: Annotations Cache stats: CacheStats{hitCount=23941, missCount=63059, loadSuccessCount=63059, loadFailureCount=0, totalLoadTime=4110104, evictionCount=62521, evictionWeight=62521} DEBUG 88000: Annotations Cache stats: CacheStats{hitCount=24191, missCount=63809, loadSuccessCount=63809, loadFailureCount=0, totalLoadTime=4147570, evictionCount=63296, evictionWeight=63296} DEBUG 89000: Annotations Cache stats: CacheStats{hitCount=24550, missCount=64450, loadSuccessCount=64450, loadFailureCount=0, totalLoadTime=4180187, evictionCount=63937, evictionWeight=63937} DEBUG 90000: Annotations Cache stats: CacheStats{hitCount=24821, missCount=65179, loadSuccessCount=65179, loadFailureCount=0, totalLoadTime=4219093, evictionCount=64667, evictionWeight=64667} DEBUG 91000: Annotations Cache stats: CacheStats{hitCount=25096, missCount=65904, loadSuccessCount=65904, loadFailureCount=0, totalLoadTime=4255375, evictionCount=65387, evictionWeight=65387} DEBUG 92000: Annotations Cache stats: CacheStats{hitCount=25370, missCount=66630, loadSuccessCount=66630, loadFailureCount=0, totalLoadTime=4291207, evictionCount=66110, evictionWeight=66110} DEBUG 93000: Annotations Cache stats: CacheStats{hitCount=25796, missCount=67204, loadSuccessCount=67204, loadFailureCount=0, totalLoadTime=4319493, evictionCount=66692, evictionWeight=66692} DEBUG 94000: Annotations Cache stats: CacheStats{hitCount=26122, missCount=67878, loadSuccessCount=67878, loadFailureCount=0, totalLoadTime=4353401, evictionCount=67363, evictionWeight=67363} DEBUG 95000: Annotations Cache stats: CacheStats{hitCount=26519, missCount=68481, loadSuccessCount=68481, loadFailureCount=0, totalLoadTime=4383402, evictionCount=67969, evictionWeight=67969} DEBUG 96000: Annotations Cache stats: CacheStats{hitCount=26879, missCount=69121, loadSuccessCount=69121, loadFailureCount=0, totalLoadTime=4415427, evictionCount=68599, evictionWeight=68599} DEBUG 97000: Annotations Cache stats: CacheStats{hitCount=27207, missCount=69793, loadSuccessCount=69793, loadFailureCount=0, totalLoadTime=4448748, evictionCount=69280, evictionWeight=69280} DEBUG 98000: Annotations Cache stats: CacheStats{hitCount=27510, missCount=70490, loadSuccessCount=70490, loadFailureCount=0, totalLoadTime=4482920, evictionCount=69977, evictionWeight=69977} DEBUG 99000: Annotations Cache stats: CacheStats{hitCount=27776, missCount=71224, loadSuccessCount=71224, loadFailureCount=0, totalLoadTime=4518466, evictionCount=70706, evictionWeight=70706} DEBUG 100000: Annotations Cache stats: CacheStats{hitCount=28073, missCount=71927, loadSuccessCount=71927, loadFailureCount=0, totalLoadTime=4552829, evictionCount=71414, evictionWeight=71414} DEBUG 101000: Annotations Cache stats: CacheStats{hitCount=28430, missCount=72570, loadSuccessCount=72570, loadFailureCount=0, totalLoadTime=4585000, evictionCount=72055, evictionWeight=72055} DEBUG 102000: Annotations Cache stats: CacheStats{hitCount=28734, missCount=73266, loadSuccessCount=73266, loadFailureCount=0, totalLoadTime=4619523, evictionCount=72732, evictionWeight=72732} DEBUG 103000: Annotations Cache stats: CacheStats{hitCount=29017, missCount=73983, loadSuccessCount=73983, loadFailureCount=0, totalLoadTime=4653867, evictionCount=73470, evictionWeight=73470} DEBUG 104000: Annotations Cache stats: CacheStats{hitCount=29319, missCount=74681, loadSuccessCount=74681, loadFailureCount=0, totalLoadTime=4687879, evictionCount=74164, evictionWeight=74164} DEBUG 105000: Annotations Cache stats: CacheStats{hitCount=29667, missCount=75333, loadSuccessCount=75333, loadFailureCount=0, totalLoadTime=4719850, evictionCount=74819, evictionWeight=74819} DEBUG 106000: Annotations Cache stats: CacheStats{hitCount=30020, missCount=75980, loadSuccessCount=75980, loadFailureCount=0, totalLoadTime=4750649, evictionCount=75467, evictionWeight=75467} DEBUG 107000: Annotations Cache stats: CacheStats{hitCount=30264, missCount=76736, loadSuccessCount=76736, loadFailureCount=0, totalLoadTime=4786311, evictionCount=76221, evictionWeight=76221} DEBUG 108000: Annotations Cache stats: CacheStats{hitCount=30548, missCount=77452, loadSuccessCount=77452, loadFailureCount=0, totalLoadTime=4819694, evictionCount=76925, evictionWeight=76925} DEBUG 109000: Annotations Cache stats: CacheStats{hitCount=30877, missCount=78123, loadSuccessCount=78123, loadFailureCount=0, totalLoadTime=4851293, evictionCount=77610, evictionWeight=77610} DEBUG 110000: Annotations Cache stats: CacheStats{hitCount=31151, missCount=78849, loadSuccessCount=78849, loadFailureCount=0, totalLoadTime=4887069, evictionCount=78328, evictionWeight=78328} DEBUG 111000: Annotations Cache stats: CacheStats{hitCount=31500, missCount=79500, loadSuccessCount=79500, loadFailureCount=0, totalLoadTime=4919159, evictionCount=78984, evictionWeight=78984} DEBUG 112000: Annotations Cache stats: CacheStats{hitCount=31705, missCount=80295, loadSuccessCount=80295, loadFailureCount=0, totalLoadTime=4957491, evictionCount=79780, evictionWeight=79780} DEBUG 113000: Annotations Cache stats: CacheStats{hitCount=31971, missCount=81029, loadSuccessCount=81029, loadFailureCount=0, totalLoadTime=4992598, evictionCount=80510, evictionWeight=80510} DEBUG 114000: Annotations Cache stats: CacheStats{hitCount=32153, missCount=81847, loadSuccessCount=81847, loadFailureCount=0, totalLoadTime=5032965, evictionCount=81331, evictionWeight=81331} DEBUG 115000: Annotations Cache stats: CacheStats{hitCount=32481, missCount=82519, loadSuccessCount=82519, loadFailureCount=0, totalLoadTime=5064419, evictionCount=81976, evictionWeight=81976} DEBUG 116000: Annotations Cache stats: CacheStats{hitCount=32759, missCount=83241, loadSuccessCount=83241, loadFailureCount=0, totalLoadTime=5098554, evictionCount=82718, evictionWeight=82718} DEBUG 117000: Annotations Cache stats: CacheStats{hitCount=33040, missCount=83960, loadSuccessCount=83960, loadFailureCount=0, totalLoadTime=5132422, evictionCount=83427, evictionWeight=83427} DEBUG 118000: Annotations Cache stats: CacheStats{hitCount=33353, missCount=84647, loadSuccessCount=84647, loadFailureCount=0, totalLoadTime=5165357, evictionCount=84135, evictionWeight=84135} DEBUG 119000: Annotations Cache stats: CacheStats{hitCount=33580, missCount=85420, loadSuccessCount=85420, loadFailureCount=0, totalLoadTime=5203813, evictionCount=84907, evictionWeight=84907} DEBUG 120000: Annotations Cache stats: CacheStats{hitCount=33899, missCount=86101, loadSuccessCount=86101, loadFailureCount=0, totalLoadTime=5236680, evictionCount=85584, evictionWeight=85584} DEBUG 121000: Annotations Cache stats: CacheStats{hitCount=34172, missCount=86828, loadSuccessCount=86828, loadFailureCount=0, totalLoadTime=5271870, evictionCount=86309, evictionWeight=86309} DEBUG 122000: Annotations Cache stats: CacheStats{hitCount=34314, missCount=87686, loadSuccessCount=87686, loadFailureCount=0, totalLoadTime=5312710, evictionCount=87169, evictionWeight=87169} DEBUG 123000: Annotations Cache stats: CacheStats{hitCount=34573, missCount=88427, loadSuccessCount=88427, loadFailureCount=0, totalLoadTime=5347894, evictionCount=87911, evictionWeight=87911} DEBUG 124000: Annotations Cache stats: CacheStats{hitCount=34947, missCount=89053, loadSuccessCount=89053, loadFailureCount=0, totalLoadTime=5378467, evictionCount=88534, evictionWeight=88534} DEBUG 125000: Annotations Cache stats: CacheStats{hitCount=35254, missCount=89746, loadSuccessCount=89746, loadFailureCount=0, totalLoadTime=5408875, evictionCount=88825, evictionWeight=88825} DEBUG 126000: Annotations Cache stats: CacheStats{hitCount=35563, missCount=90437, loadSuccessCount=90437, loadFailureCount=0, totalLoadTime=5437056, evictionCount=88825, evictionWeight=88825} DEBUG 127000: Annotations Cache stats: CacheStats{hitCount=35799, missCount=91201, loadSuccessCount=91201, loadFailureCount=0, totalLoadTime=5470695, evictionCount=89604, evictionWeight=89604} DEBUG 128000: Annotations Cache stats: CacheStats{hitCount=36098, missCount=91902, loadSuccessCount=91902, loadFailureCount=0, totalLoadTime=5506653, evictionCount=91390, evictionWeight=91390} DEBUG 129000: Annotations Cache stats: CacheStats{hitCount=36273, missCount=92727, loadSuccessCount=92727, loadFailureCount=0, totalLoadTime=5553779, evictionCount=92193, evictionWeight=92193} DEBUG 130000: Annotations Cache stats: CacheStats{hitCount=36476, missCount=93524, loadSuccessCount=93524, loadFailureCount=0, totalLoadTime=5598152, evictionCount=93011, evictionWeight=93011} DEBUG 131000: Annotations Cache stats: CacheStats{hitCount=36788, missCount=94212, loadSuccessCount=94212, loadFailureCount=0, totalLoadTime=5636053, evictionCount=93700, evictionWeight=93700} DEBUG 132000: Annotations Cache stats: CacheStats{hitCount=37095, missCount=94905, loadSuccessCount=94905, loadFailureCount=0, totalLoadTime=5675429, evictionCount=94392, evictionWeight=94392} DEBUG 133000: Annotations Cache stats: CacheStats{hitCount=37390, missCount=95610, loadSuccessCount=95610, loadFailureCount=0, totalLoadTime=5715309, evictionCount=95095, evictionWeight=95095} DEBUG 134000: Annotations Cache stats: CacheStats{hitCount=37667, missCount=96333, loadSuccessCount=96333, loadFailureCount=0, totalLoadTime=5756954, evictionCount=95820, evictionWeight=95820} DEBUG 135000: Annotations Cache stats: CacheStats{hitCount=37962, missCount=97038, loadSuccessCount=97038, loadFailureCount=0, totalLoadTime=5796661, evictionCount=96526, evictionWeight=96526} DEBUG 136000: Annotations Cache stats: CacheStats{hitCount=38242, missCount=97758, loadSuccessCount=97758, loadFailureCount=0, totalLoadTime=5836596, evictionCount=97245, evictionWeight=97245} DEBUG 137000: Annotations Cache stats: CacheStats{hitCount=38549, missCount=98451, loadSuccessCount=98451, loadFailureCount=0, totalLoadTime=5873982, evictionCount=97938, evictionWeight=97938} DEBUG 138000: Annotations Cache stats: CacheStats{hitCount=38839, missCount=99161, loadSuccessCount=99161, loadFailureCount=0, totalLoadTime=5911681, evictionCount=98648, evictionWeight=98648} DEBUG 139000: Annotations Cache stats: CacheStats{hitCount=39172, missCount=99828, loadSuccessCount=99828, loadFailureCount=0, totalLoadTime=5946104, evictionCount=99310, evictionWeight=99310} DEBUG 140000: Annotations Cache stats: CacheStats{hitCount=39491, missCount=100509, loadSuccessCount=100509, loadFailureCount=0, totalLoadTime=5981883, evictionCount=99997, evictionWeight=99997} DEBUG 141000: Annotations Cache stats: CacheStats{hitCount=39830, missCount=101170, loadSuccessCount=101170, loadFailureCount=0, totalLoadTime=6013383, evictionCount=100655, evictionWeight=100655} DEBUG 142000: Annotations Cache stats: CacheStats{hitCount=40048, missCount=101952, loadSuccessCount=101952, loadFailureCount=0, totalLoadTime=6051895, evictionCount=101438, evictionWeight=101438} DEBUG 143000: Annotations Cache stats: CacheStats{hitCount=40352, missCount=102648, loadSuccessCount=102648, loadFailureCount=0, totalLoadTime=6085180, evictionCount=102135, evictionWeight=102135} DEBUG 144000: Annotations Cache stats: CacheStats{hitCount=40560, missCount=103440, loadSuccessCount=103440, loadFailureCount=0, totalLoadTime=6123887, evictionCount=102926, evictionWeight=102926} DEBUG 145000: Annotations Cache stats: CacheStats{hitCount=40838, missCount=104162, loadSuccessCount=104162, loadFailureCount=0, totalLoadTime=6157033, evictionCount=103650, evictionWeight=103650} DEBUG 146000: Annotations Cache stats: CacheStats{hitCount=41048, missCount=104952, loadSuccessCount=104952, loadFailureCount=0, totalLoadTime=6191856, evictionCount=104438, evictionWeight=104438} DEBUG 147000: Annotations Cache stats: CacheStats{hitCount=41235, missCount=105765, loadSuccessCount=105765, loadFailureCount=0, totalLoadTime=6226038, evictionCount=105247, evictionWeight=105247} DEBUG 148000: Annotations Cache stats: CacheStats{hitCount=41521, missCount=106479, loadSuccessCount=106479, loadFailureCount=0, totalLoadTime=6254694, evictionCount=105944, evictionWeight=105944} DEBUG 149000: Annotations Cache stats: CacheStats{hitCount=41863, missCount=107137, loadSuccessCount=107137, loadFailureCount=0, totalLoadTime=6281027, evictionCount=106623, evictionWeight=106623} DEBUG 150000: Annotations Cache stats: CacheStats{hitCount=42165, missCount=107835, loadSuccessCount=107835, loadFailureCount=0, totalLoadTime=6309132, evictionCount=107322, evictionWeight=107322} DEBUG 151000: Annotations Cache stats: CacheStats{hitCount=42426, missCount=108574, loadSuccessCount=108574, loadFailureCount=0, totalLoadTime=6340285, evictionCount=108059, evictionWeight=108059} DEBUG 152000: Annotations Cache stats: CacheStats{hitCount=42761, missCount=109239, loadSuccessCount=109239, loadFailureCount=0, totalLoadTime=6367494, evictionCount=108725, evictionWeight=108725} DEBUG 153000: Annotations Cache stats: CacheStats{hitCount=43097, missCount=109903, loadSuccessCount=109903, loadFailureCount=0, totalLoadTime=6395973, evictionCount=109365, evictionWeight=109365} DEBUG 154000: Annotations Cache stats: CacheStats{hitCount=43369, missCount=110631, loadSuccessCount=110631, loadFailureCount=0, totalLoadTime=6428108, evictionCount=110083, evictionWeight=110083} DEBUG 155000: Annotations Cache stats: CacheStats{hitCount=43667, missCount=111333, loadSuccessCount=111333, loadFailureCount=0, totalLoadTime=6460627, evictionCount=110804, evictionWeight=110804} DEBUG 156000: Annotations Cache stats: CacheStats{hitCount=43924, missCount=112076, loadSuccessCount=112076, loadFailureCount=0, totalLoadTime=6490746, evictionCount=111561, evictionWeight=111561} DEBUG 157000: Annotations Cache stats: CacheStats{hitCount=44211, missCount=112789, loadSuccessCount=112789, loadFailureCount=0, totalLoadTime=6527157, evictionCount=112256, evictionWeight=112256} DEBUG 158000: Annotations Cache stats: CacheStats{hitCount=44438, missCount=113562, loadSuccessCount=113562, loadFailureCount=0, totalLoadTime=6560120, evictionCount=113001, evictionWeight=113001} DEBUG 159000: Annotations Cache stats: CacheStats{hitCount=44695, missCount=114305, loadSuccessCount=114305, loadFailureCount=0, totalLoadTime=6592099, evictionCount=113790, evictionWeight=113790} DEBUG 160000: Annotations Cache stats: CacheStats{hitCount=44994, missCount=115006, loadSuccessCount=115006, loadFailureCount=0, totalLoadTime=6622668, evictionCount=114487, evictionWeight=114487} DEBUG 161000: Annotations Cache stats: CacheStats{hitCount=45344, missCount=115656, loadSuccessCount=115656, loadFailureCount=0, totalLoadTime=6650796, evictionCount=115116, evictionWeight=115116} DEBUG 162000: Annotations Cache stats: CacheStats{hitCount=45626, missCount=116374, loadSuccessCount=116374, loadFailureCount=0, totalLoadTime=6681565, evictionCount=115857, evictionWeight=115857} DEBUG 163000: Annotations Cache stats: CacheStats{hitCount=45936, missCount=117064, loadSuccessCount=117064, loadFailureCount=0, totalLoadTime=6711303, evictionCount=116549, evictionWeight=116549} DEBUG 164000: Annotations Cache stats: CacheStats{hitCount=46209, missCount=117791, loadSuccessCount=117791, loadFailureCount=0, totalLoadTime=6742003, evictionCount=117276, evictionWeight=117276} DEBUG 165000: Annotations Cache stats: CacheStats{hitCount=46515, missCount=118485, loadSuccessCount=118485, loadFailureCount=0, totalLoadTime=6772031, evictionCount=117973, evictionWeight=117973} DEBUG 166000: Annotations Cache stats: CacheStats{hitCount=46750, missCount=119250, loadSuccessCount=119250, loadFailureCount=0, totalLoadTime=6804485, evictionCount=118738, evictionWeight=118738} DEBUG 167000: Annotations Cache stats: CacheStats{hitCount=47346, missCount=119654, loadSuccessCount=119654, loadFailureCount=0, totalLoadTime=6821812, evictionCount=119142, evictionWeight=119142} DEBUG 168000: Annotations Cache stats: CacheStats{hitCount=48346, missCount=119654, loadSuccessCount=119654, loadFailureCount=0, totalLoadTime=6821812, evictionCount=119142, evictionWeight=119142} DEBUG 169000: Annotations Cache stats: CacheStats{hitCount=49344, missCount=119656, loadSuccessCount=119656, loadFailureCount=0, totalLoadTime=6821981, evictionCount=119144, evictionWeight=119144} DEBUG 170000: Annotations Cache stats: CacheStats{hitCount=50344, missCount=119656, loadSuccessCount=119656, loadFailureCount=0, totalLoadTime=6821981, evictionCount=119144, evictionWeight=119144} DEBUG 171000: Annotations Cache stats: CacheStats{hitCount=51342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG 172000: Annotations Cache stats: CacheStats{hitCount=52342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG 173000: Annotations Cache stats: CacheStats{hitCount=53342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG 174000: Annotations Cache stats: CacheStats{hitCount=54342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG 175000: Annotations Cache stats: CacheStats{hitCount=55342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG 176000: Annotations Cache stats: CacheStats{hitCount=56342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG 177000: Annotations Cache stats: CacheStats{hitCount=57342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG 178000: Annotations Cache stats: CacheStats{hitCount=58342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG 179000: Annotations Cache stats: CacheStats{hitCount=59342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG 180000: Annotations Cache stats: CacheStats{hitCount=60342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG 181000: Annotations Cache stats: CacheStats{hitCount=61342, missCount=119658, loadSuccessCount=119658, loadFailureCount=0, totalLoadTime=6822085, evictionCount=119146, evictionWeight=119146} DEBUG Loaded OntologyID(Anonymous-2) DEBUG owlParse: timing=5972 DEBUG rioParse: timing=5973 DEBUG Saving ontology as OboGraphs JSON Syntax with to IRI file:/Users/joeflack4/projects/omim/omim.json OBO GRAPH ERROR Could not convert ontology to OBO Graph (see https://github.com/geneontology/obographs) For details see: http://robot.obolibrary.org/errors#obo-graph-error java.io.IOException: errors#OBO GRAPH ERROR Could not convert ontology to OBO Graph (see https://github.com/geneontology/obographs) at org.obolibrary.robot.IOHelper.saveOntologyFile(IOHelper.java:1742) at org.obolibrary.robot.IOHelper.saveOntology(IOHelper.java:866) at org.obolibrary.robot.CommandLineHelper.maybeSaveOutput(CommandLineHelper.java:667) at org.obolibrary.robot.ConvertCommand.execute(ConvertCommand.java:141) at org.obolibrary.robot.CommandManager.executeCommand(CommandManager.java:244) at org.obolibrary.robot.CommandManager.execute(CommandManager.java:188) at org.obolibrary.robot.CommandManager.main(CommandManager.java:135) at org.obolibrary.robot.CommandLineInterface.main(CommandLineInterface.java:61) ```

Attempt 2: robot remove

There's no indication in the error message that biolink:has_evidence has anything to do with it, but the only advice at http://robot.obolibrary.org/errors#obo-graph-error is in regards to problematic annotations, which it recommends removing, so I decided to try this anyway: robot remove --input omim.ttl --exclude-term biolink:has_evidence -o omim.json. Again, I can't locate any helpful information in the log / stacktrace.

Log ``` robot remove -vvv --input omim.ttl --exclude-term biolink:has_evidence -o omim.json DEBUG Loading ontology omim.ttl with catalog file null DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Injecting object uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl@50468873 DEBUG Loading file META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Injecting values [[org.semanticweb.owlapi.manchestersyntax.parser.ManchesterOWLSyntaxOntologyParserFactory@604c5de8, org.semanticweb.owlapi.rio.RioRDFXMLParserFactory@6492fab5, org.semanticweb.owlapi.krss2.parser.KRSS2OWLParserFactory@584f54e6, org.semanticweb.owlapi.rdf.rdfxml.parser.RDFXMLParserFactory@663411de, org.semanticweb.owlapi.rio.RioJsonLDParserFactory@373ebf74, org.semanticweb.owlapi.rio.RioN3ParserFactory@626c44e7, org.semanticweb.owlapi.rio.RioJsonParserFactory@5ccbeb64, org.semanticweb.owlapi.rdf.turtle.parser.TurtleOntologyParserFactory@5ef6ae06, org.semanticweb.owlapi.owlxml.parser.OWLXMLParserFactory@366ac49b, org.semanticweb.owlapi.rio.RioTurtleParserFactory@299321e2, org.semanticweb.owlapi.rio.RioNQuadsParserFactory@53d102a2, org.semanticweb.owlapi.rio.RioRDFaParserFactory@7103cb56, org.semanticweb.owlapi.rio.RioBinaryRdfParserFactory@10ded6a9, org.semanticweb.owlapi.oboformat.OBOFormatOWLAPIParserFactory@9ef8eb7, org.semanticweb.owlapi.rio.RioNTriplesParserFactory@61f05988, org.semanticweb.owlapi.rio.RioTrixParserFactory@50ecde95, org.semanticweb.owlapi.rio.RioTrigParserFactory@3700ec9c, org.semanticweb.owlapi.functional.parser.OWLFunctionalSyntaxOWLParserFactory@604f2bd2]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyParsers(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Injecting values [[uk.ac.manchester.cs.owl.owlapi.OWLOntologyFactoryImpl@7cbc3762]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyFactories(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Injecting values [[org.semanticweb.owlapi.oboformat.OBOFormatStorerFactory@5cbe877d, org.semanticweb.owlapi.rio.RioNQuadsStorerFactory@2cc3ad05, org.semanticweb.owlapi.rio.RioTrixStorerFactory@58ffcbd7, org.semanticweb.owlapi.owlxml.renderer.OWLXMLStorerFactory@26bab2f1, org.semanticweb.owlapi.dlsyntax.renderer.DLSyntaxStorerFactory@5cdd09b1, org.semanticweb.owlapi.functional.renderer.FunctionalSyntaxStorerFactory@180da663, org.semanticweb.owlapi.latex.renderer.LatexStorerFactory@56e8b606, org.semanticweb.owlapi.rio.RioJsonLDStorerFactory@1c3b9394, org.semanticweb.owlapi.rdf.rdfxml.renderer.RDFXMLStorerFactory@44040454, org.semanticweb.owlapi.rio.RioJsonStorerFactory@ccb4b1b, org.semanticweb.owlapi.rio.RioNTriplesStorerFactory@c055c54, org.semanticweb.owlapi.manchestersyntax.renderer.ManchesterSyntaxStorerFactory@37052337, org.semanticweb.owlapi.rio.RioN3StorerFactory@7c1e2a2d, org.semanticweb.owlapi.rio.RioBinaryRdfStorerFactory@1b2c4efb, org.semanticweb.owlapi.rio.RioTurtleStorerFactory@1a9c38eb, org.semanticweb.owlapi.dlsyntax.renderer.DLSyntaxHTMLStorerFactory@1253e7cb, org.semanticweb.owlapi.rio.RioTrigStorerFactory@5066d65f, org.semanticweb.owlapi.krss2.renderer.KRSS2OWLSyntaxStorerFactory@53f0a4cb, org.semanticweb.owlapi.rdf.turtle.renderer.TurtleStorerFactory@37efd131, org.semanticweb.owlapi.rio.RioRDFXMLStorerFactory@55562aa9]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyStorers(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyIRIMapper DEBUG No files found for META-INF/services/org.semanticweb.owlapi.model.OWLOntologyIRIMapper DEBUG Injecting values [[]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setIRIMappers(java.util.Set). DEBUG Registered service class org.semanticweb.owlapi.rio.RioFunctionalSyntaxParserFactory DEBUG Registered service class org.semanticweb.owlapi.rio.RioManchesterSyntaxParserFactory DEBUG Registered service class org.semanticweb.owlapi.rio.RioOWLXMLParserFactory DEBUG Registered service class org.openrdf.rio.binary.BinaryRDFParserFactory DEBUG Registered service class org.openrdf.rio.n3.N3ParserFactory DEBUG Registered service class org.openrdf.rio.nquads.NQuadsParserFactory DEBUG Registered service class org.openrdf.rio.ntriples.NTriplesParserFactory DEBUG Registered service class org.openrdf.rio.rdfjson.RDFJSONParserFactory DEBUG Registered service class org.openrdf.rio.rdfxml.RDFXMLParserFactory DEBUG Registered service class org.openrdf.rio.trix.TriXParserFactory DEBUG Registered service class org.openrdf.rio.turtle.TurtleParserFactory DEBUG Registered service class org.openrdf.rio.trig.TriGParserFactory DEBUG Registered service class com.github.jsonldjava.sesame.SesameJSONLDParserFactory DEBUG Registered service class org.semarglproject.sesame.rdf.rdfa.SesameRDFaParserFactory DEBUG Registered service class org.openrdf.rio.datatypes.XMLSchemaDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.RDFDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.DBPediaDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.VirtuosoGeometryDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.GeoSPARQLDatatypeHandler DEBUG Registered service class org.openrdf.rio.languages.RFC3066LanguageHandler DEBUG Parsed: 10000 triples DEBUG Parsed: 20000 triples DEBUG Parsed: 30000 triples DEBUG Parsed: 40000 triples DEBUG Parsed: 50000 triples DEBUG Parsed: 60000 triples DEBUG Parsed: 70000 triples DEBUG Parsed: 80000 triples DEBUG Parsed: 90000 triples DEBUG Parsed: 100000 triples DEBUG Parsed: 110000 triples DEBUG Parsed: 120000 triples DEBUG Parsed: 130000 triples DEBUG Parsed: 140000 triples DEBUG Parsed: 150000 triples DEBUG Parsed: 160000 triples DEBUG Parsed: 170000 triples DEBUG Parsed: 180000 triples DEBUG Parsed: 190000 triples DEBUG Parsed: 200000 triples DEBUG Parsed: 210000 triples DEBUG Parsed: 220000 triples DEBUG Parsed: 230000 triples DEBUG Parsed: 240000 triples DEBUG Parsed: 250000 triples DEBUG Parsed: 260000 triples DEBUG Parsed: 270000 triples DEBUG Parsed: 280000 triples DEBUG Parsed: 290000 triples DEBUG Parsed: 300000 triples DEBUG Parsed: 310000 triples DEBUG Parsed: 320000 triples DEBUG Parsed: 330000 triples DEBUG Parsed: 340000 triples DEBUG Parsed: 350000 triples DEBUG Parsed: 360000 triples DEBUG Parsed: 370000 triples DEBUG Parsed: 380000 triples DEBUG Parsed: 390000 triples DEBUG Parsed: 400000 triples DEBUG Parsed: 410000 triples DEBUG Parsed: 420000 triples DEBUG Parsed: 430000 triples DEBUG Total number of triples: 432624 DEBUG 1000: Annotations Cache stats: CacheStats{hitCount=318, missCount=682, loadSuccessCount=682, loadFailureCount=0, totalLoadTime=678536, evictionCount=143, evictionWeight=143} DEBUG 2000: Annotations Cache stats: CacheStats{hitCount=518, missCount=1482, loadSuccessCount=1482, loadFailureCount=0, totalLoadTime=968643, evictionCount=903, evictionWeight=903} DEBUG 3000: Annotations Cache stats: CacheStats{hitCount=756, missCount=2244, loadSuccessCount=2244, loadFailureCount=0, totalLoadTime=1201634, evictionCount=1650, evictionWeight=1650} DEBUG 4000: Annotations Cache stats: CacheStats{hitCount=1024, missCount=2976, loadSuccessCount=2976, loadFailureCount=0, totalLoadTime=1527834, evictionCount=2462, evictionWeight=2462} DEBUG 5000: Annotations Cache stats: CacheStats{hitCount=1282, missCount=3718, loadSuccessCount=3718, loadFailureCount=0, totalLoadTime=1741176, evictionCount=3204, evictionWeight=3204} DEBUG 6000: Annotations Cache stats: CacheStats{hitCount=1493, missCount=4507, loadSuccessCount=4507, loadFailureCount=0, totalLoadTime=1964036, evictionCount=3991, evictionWeight=3991} DEBUG 7000: Annotations Cache stats: CacheStats{hitCount=1789, missCount=5211, loadSuccessCount=5211, loadFailureCount=0, totalLoadTime=2162059, evictionCount=4697, evictionWeight=4697} DEBUG 8000: Annotations Cache stats: CacheStats{hitCount=2157, missCount=5843, loadSuccessCount=5843, loadFailureCount=0, totalLoadTime=2340360, evictionCount=5330, evictionWeight=5330} DEBUG 9000: Annotations Cache stats: CacheStats{hitCount=2488, missCount=6512, loadSuccessCount=6512, loadFailureCount=0, totalLoadTime=2533147, evictionCount=5997, evictionWeight=5997} DEBUG 10000: Annotations Cache stats: CacheStats{hitCount=2794, missCount=7206, loadSuccessCount=7206, loadFailureCount=0, totalLoadTime=2728954, evictionCount=6693, evictionWeight=6693} DEBUG 11000: Annotations Cache stats: CacheStats{hitCount=2999, missCount=8001, loadSuccessCount=8001, loadFailureCount=0, totalLoadTime=2936944, evictionCount=7487, evictionWeight=7487} DEBUG 12000: Annotations Cache stats: CacheStats{hitCount=3269, missCount=8731, loadSuccessCount=8731, loadFailureCount=0, totalLoadTime=3132629, evictionCount=8219, evictionWeight=8219} DEBUG 13000: Annotations Cache stats: CacheStats{hitCount=3552, missCount=9448, loadSuccessCount=9448, loadFailureCount=0, totalLoadTime=3303269, evictionCount=8935, evictionWeight=8935} DEBUG 14000: Annotations Cache stats: CacheStats{hitCount=3779, missCount=10221, loadSuccessCount=10221, loadFailureCount=0, totalLoadTime=3502927, evictionCount=9706, evictionWeight=9706} DEBUG 15000: Annotations Cache stats: CacheStats{hitCount=4142, missCount=10858, loadSuccessCount=10858, loadFailureCount=0, totalLoadTime=3657261, evictionCount=10342, evictionWeight=10342} DEBUG 16000: Annotations Cache stats: CacheStats{hitCount=4396, missCount=11604, loadSuccessCount=11604, loadFailureCount=0, totalLoadTime=3848997, evictionCount=11090, evictionWeight=11090} DEBUG 17000: Annotations Cache stats: CacheStats{hitCount=4652, missCount=12348, loadSuccessCount=12348, loadFailureCount=0, totalLoadTime=4027046, evictionCount=11833, evictionWeight=11833} DEBUG 18000: Annotations Cache stats: CacheStats{hitCount=4932, missCount=13068, loadSuccessCount=13068, loadFailureCount=0, totalLoadTime=4189927, evictionCount=12555, evictionWeight=12555} DEBUG 19000: Annotations Cache stats: CacheStats{hitCount=5225, missCount=13775, loadSuccessCount=13775, loadFailureCount=0, totalLoadTime=4230633, evictionCount=13262, evictionWeight=13262} DEBUG 20000: Annotations Cache stats: CacheStats{hitCount=5497, missCount=14503, loadSuccessCount=14503, loadFailureCount=0, totalLoadTime=4273724, evictionCount=13990, evictionWeight=13990} DEBUG 21000: Annotations Cache stats: CacheStats{hitCount=5784, missCount=15216, loadSuccessCount=15216, loadFailureCount=0, totalLoadTime=4311520, evictionCount=14703, evictionWeight=14703} DEBUG 22000: Annotations Cache stats: CacheStats{hitCount=6029, missCount=15971, loadSuccessCount=15971, loadFailureCount=0, totalLoadTime=4348246, evictionCount=15458, evictionWeight=15458} DEBUG 23000: Annotations Cache stats: CacheStats{hitCount=6264, missCount=16736, loadSuccessCount=16736, loadFailureCount=0, totalLoadTime=4385386, evictionCount=16223, evictionWeight=16223} DEBUG 24000: Annotations Cache stats: CacheStats{hitCount=6531, missCount=17469, loadSuccessCount=17469, loadFailureCount=0, totalLoadTime=4422156, evictionCount=16954, evictionWeight=16954} DEBUG 25000: Annotations Cache stats: CacheStats{hitCount=6805, missCount=18195, loadSuccessCount=18195, loadFailureCount=0, totalLoadTime=4455431, evictionCount=17680, evictionWeight=17680} DEBUG 26000: Annotations Cache stats: CacheStats{hitCount=7059, missCount=18941, loadSuccessCount=18941, loadFailureCount=0, totalLoadTime=4493018, evictionCount=18428, evictionWeight=18428} DEBUG 27000: Annotations Cache stats: CacheStats{hitCount=7260, missCount=19740, loadSuccessCount=19740, loadFailureCount=0, totalLoadTime=4534342, evictionCount=19215, evictionWeight=19215} DEBUG 28000: Annotations Cache stats: CacheStats{hitCount=7574, missCount=20426, loadSuccessCount=20426, loadFailureCount=0, totalLoadTime=4568102, evictionCount=19913, evictionWeight=19913} DEBUG 29000: Annotations Cache stats: CacheStats{hitCount=7849, missCount=21151, loadSuccessCount=21151, loadFailureCount=0, totalLoadTime=4604969, evictionCount=20637, evictionWeight=20637} DEBUG 30000: Annotations Cache stats: CacheStats{hitCount=8152, missCount=21848, loadSuccessCount=21848, loadFailureCount=0, totalLoadTime=4646788, evictionCount=21335, evictionWeight=21335} DEBUG 31000: Annotations Cache stats: CacheStats{hitCount=8425, missCount=22575, loadSuccessCount=22575, loadFailureCount=0, totalLoadTime=4688226, evictionCount=22062, evictionWeight=22062} DEBUG 32000: Annotations Cache stats: CacheStats{hitCount=8770, missCount=23230, loadSuccessCount=23230, loadFailureCount=0, totalLoadTime=4726637, evictionCount=22716, evictionWeight=22716} DEBUG 33000: Annotations Cache stats: CacheStats{hitCount=8993, missCount=24007, loadSuccessCount=24007, loadFailureCount=0, totalLoadTime=4771666, evictionCount=23493, evictionWeight=23493} DEBUG 34000: Annotations Cache stats: CacheStats{hitCount=9207, missCount=24793, loadSuccessCount=24793, loadFailureCount=0, totalLoadTime=4816092, evictionCount=24278, evictionWeight=24278} DEBUG 35000: Annotations Cache stats: CacheStats{hitCount=9543, missCount=25457, loadSuccessCount=25457, loadFailureCount=0, totalLoadTime=4852348, evictionCount=24943, evictionWeight=24943} DEBUG 36000: Annotations Cache stats: CacheStats{hitCount=9872, missCount=26128, loadSuccessCount=26128, loadFailureCount=0, totalLoadTime=4891074, evictionCount=25615, evictionWeight=25615} DEBUG 37000: Annotations Cache stats: CacheStats{hitCount=10073, missCount=26927, loadSuccessCount=26927, loadFailureCount=0, totalLoadTime=4931095, evictionCount=26415, evictionWeight=26415} DEBUG 38000: Annotations Cache stats: CacheStats{hitCount=10258, missCount=27742, loadSuccessCount=27742, loadFailureCount=0, totalLoadTime=4969331, evictionCount=27218, evictionWeight=27218} DEBUG 39000: Annotations Cache stats: CacheStats{hitCount=10604, missCount=28396, loadSuccessCount=28396, loadFailureCount=0, totalLoadTime=4997820, evictionCount=27883, evictionWeight=27883} DEBUG 40000: Annotations Cache stats: CacheStats{hitCount=10903, missCount=29097, loadSuccessCount=29097, loadFailureCount=0, totalLoadTime=5029455, evictionCount=28583, evictionWeight=28583} DEBUG 41000: Annotations Cache stats: CacheStats{hitCount=11167, missCount=29833, loadSuccessCount=29833, loadFailureCount=0, totalLoadTime=5061533, evictionCount=29317, evictionWeight=29317} DEBUG 42000: Annotations Cache stats: CacheStats{hitCount=11435, missCount=30565, loadSuccessCount=30565, loadFailureCount=0, totalLoadTime=5093353, evictionCount=30051, evictionWeight=30051} DEBUG 43000: Annotations Cache stats: CacheStats{hitCount=11736, missCount=31264, loadSuccessCount=31264, loadFailureCount=0, totalLoadTime=5125370, evictionCount=30744, evictionWeight=30744} DEBUG 44000: Annotations Cache stats: CacheStats{hitCount=12019, missCount=31981, loadSuccessCount=31981, loadFailureCount=0, totalLoadTime=5157843, evictionCount=31468, evictionWeight=31468} DEBUG 45000: Annotations Cache stats: CacheStats{hitCount=12313, missCount=32687, loadSuccessCount=32687, loadFailureCount=0, totalLoadTime=5188873, evictionCount=32170, evictionWeight=32170} DEBUG 46000: Annotations Cache stats: CacheStats{hitCount=12679, missCount=33321, loadSuccessCount=33321, loadFailureCount=0, totalLoadTime=5216596, evictionCount=32802, evictionWeight=32802} DEBUG 47000: Annotations Cache stats: CacheStats{hitCount=12981, missCount=34019, loadSuccessCount=34019, loadFailureCount=0, totalLoadTime=5247680, evictionCount=33504, evictionWeight=33504} DEBUG 48000: Annotations Cache stats: CacheStats{hitCount=13227, missCount=34773, loadSuccessCount=34773, loadFailureCount=0, totalLoadTime=5279650, evictionCount=34257, evictionWeight=34257} DEBUG 49000: Annotations Cache stats: CacheStats{hitCount=13576, missCount=35424, loadSuccessCount=35424, loadFailureCount=0, totalLoadTime=5307936, evictionCount=34911, evictionWeight=34911} DEBUG 50000: Annotations Cache stats: CacheStats{hitCount=13750, missCount=36250, loadSuccessCount=36250, loadFailureCount=0, totalLoadTime=5343448, evictionCount=35734, evictionWeight=35734} DEBUG 51000: Annotations Cache stats: CacheStats{hitCount=14005, missCount=36995, loadSuccessCount=36995, loadFailureCount=0, totalLoadTime=5377678, evictionCount=36358, evictionWeight=36358} DEBUG 52000: Annotations Cache stats: CacheStats{hitCount=14230, missCount=37770, loadSuccessCount=37770, loadFailureCount=0, totalLoadTime=5410444, evictionCount=37248, evictionWeight=37248} DEBUG 53000: Annotations Cache stats: CacheStats{hitCount=14532, missCount=38468, loadSuccessCount=38468, loadFailureCount=0, totalLoadTime=5442303, evictionCount=37954, evictionWeight=37954} DEBUG 54000: Annotations Cache stats: CacheStats{hitCount=14814, missCount=39186, loadSuccessCount=39186, loadFailureCount=0, totalLoadTime=5479312, evictionCount=38667, evictionWeight=38667} DEBUG 55000: Annotations Cache stats: CacheStats{hitCount=15068, missCount=39932, loadSuccessCount=39932, loadFailureCount=0, totalLoadTime=5519382, evictionCount=39410, evictionWeight=39410} DEBUG 56000: Annotations Cache stats: CacheStats{hitCount=15421, missCount=40579, loadSuccessCount=40579, loadFailureCount=0, totalLoadTime=5555835, evictionCount=40062, evictionWeight=40062} DEBUG 57000: Annotations Cache stats: CacheStats{hitCount=15683, missCount=41317, loadSuccessCount=41317, loadFailureCount=0, totalLoadTime=5595672, evictionCount=40800, evictionWeight=40800} DEBUG 58000: Annotations Cache stats: CacheStats{hitCount=15905, missCount=42095, loadSuccessCount=42095, loadFailureCount=0, totalLoadTime=5635781, evictionCount=41579, evictionWeight=41579} DEBUG 59000: Annotations Cache stats: CacheStats{hitCount=16043, missCount=42957, loadSuccessCount=42957, loadFailureCount=0, totalLoadTime=5680878, evictionCount=42444, evictionWeight=42444} DEBUG 60000: Annotations Cache stats: CacheStats{hitCount=16347, missCount=43653, loadSuccessCount=43653, loadFailureCount=0, totalLoadTime=5717114, evictionCount=43140, evictionWeight=43140} DEBUG 61000: Annotations Cache stats: CacheStats{hitCount=16644, missCount=44356, loadSuccessCount=44356, loadFailureCount=0, totalLoadTime=5753492, evictionCount=43844, evictionWeight=43844} DEBUG 62000: Annotations Cache stats: CacheStats{hitCount=16857, missCount=45143, loadSuccessCount=45143, loadFailureCount=0, totalLoadTime=5793476, evictionCount=44628, evictionWeight=44628} DEBUG 63000: Annotations Cache stats: CacheStats{hitCount=17164, missCount=45836, loadSuccessCount=45836, loadFailureCount=0, totalLoadTime=5829514, evictionCount=45321, evictionWeight=45321} DEBUG 64000: Annotations Cache stats: CacheStats{hitCount=17430, missCount=46570, loadSuccessCount=46570, loadFailureCount=0, totalLoadTime=5869805, evictionCount=46055, evictionWeight=46055} DEBUG 65000: Annotations Cache stats: CacheStats{hitCount=17641, missCount=47359, loadSuccessCount=47359, loadFailureCount=0, totalLoadTime=5911835, evictionCount=46831, evictionWeight=46831} DEBUG 66000: Annotations Cache stats: CacheStats{hitCount=17934, missCount=48066, loadSuccessCount=48066, loadFailureCount=0, totalLoadTime=5947946, evictionCount=47553, evictionWeight=47553} DEBUG 67000: Annotations Cache stats: CacheStats{hitCount=18171, missCount=48829, loadSuccessCount=48829, loadFailureCount=0, totalLoadTime=6002811, evictionCount=48314, evictionWeight=48314} DEBUG 68000: Annotations Cache stats: CacheStats{hitCount=18480, missCount=49520, loadSuccessCount=49520, loadFailureCount=0, totalLoadTime=6038223, evictionCount=48997, evictionWeight=48997} DEBUG 69000: Annotations Cache stats: CacheStats{hitCount=18790, missCount=50210, loadSuccessCount=50210, loadFailureCount=0, totalLoadTime=6073030, evictionCount=49696, evictionWeight=49696} DEBUG 70000: Annotations Cache stats: CacheStats{hitCount=19107, missCount=50893, loadSuccessCount=50893, loadFailureCount=0, totalLoadTime=6105920, evictionCount=50378, evictionWeight=50378} DEBUG 71000: Annotations Cache stats: CacheStats{hitCount=19354, missCount=51646, loadSuccessCount=51646, loadFailureCount=0, totalLoadTime=6143768, evictionCount=51129, evictionWeight=51129} DEBUG 72000: Annotations Cache stats: CacheStats{hitCount=19642, missCount=52358, loadSuccessCount=52358, loadFailureCount=0, totalLoadTime=6180208, evictionCount=51842, evictionWeight=51842} DEBUG 73000: Annotations Cache stats: CacheStats{hitCount=19907, missCount=53093, loadSuccessCount=53093, loadFailureCount=0, totalLoadTime=6216653, evictionCount=52575, evictionWeight=52575} DEBUG 74000: Annotations Cache stats: CacheStats{hitCount=20271, missCount=53729, loadSuccessCount=53729, loadFailureCount=0, totalLoadTime=6247939, evictionCount=53210, evictionWeight=53210} DEBUG 75000: Annotations Cache stats: CacheStats{hitCount=20547, missCount=54453, loadSuccessCount=54453, loadFailureCount=0, totalLoadTime=6284089, evictionCount=53938, evictionWeight=53938} DEBUG 76000: Annotations Cache stats: CacheStats{hitCount=20818, missCount=55182, loadSuccessCount=55182, loadFailureCount=0, totalLoadTime=6321187, evictionCount=54666, evictionWeight=54666} DEBUG 77000: Annotations Cache stats: CacheStats{hitCount=21126, missCount=55874, loadSuccessCount=55874, loadFailureCount=0, totalLoadTime=6352895, evictionCount=55356, evictionWeight=55356} DEBUG 78000: Annotations Cache stats: CacheStats{hitCount=21429, missCount=56571, loadSuccessCount=56571, loadFailureCount=0, totalLoadTime=6384333, evictionCount=56056, evictionWeight=56056} DEBUG 79000: Annotations Cache stats: CacheStats{hitCount=21737, missCount=57263, loadSuccessCount=57263, loadFailureCount=0, totalLoadTime=6413821, evictionCount=56748, evictionWeight=56748} DEBUG 80000: Annotations Cache stats: CacheStats{hitCount=21996, missCount=58004, loadSuccessCount=58004, loadFailureCount=0, totalLoadTime=6449570, evictionCount=57491, evictionWeight=57491} DEBUG 81000: Annotations Cache stats: CacheStats{hitCount=22227, missCount=58773, loadSuccessCount=58773, loadFailureCount=0, totalLoadTime=6483225, evictionCount=58261, evictionWeight=58261} DEBUG 82000: Annotations Cache stats: CacheStats{hitCount=22493, missCount=59507, loadSuccessCount=59507, loadFailureCount=0, totalLoadTime=6515035, evictionCount=58993, evictionWeight=58993} DEBUG 83000: Annotations Cache stats: CacheStats{hitCount=22802, missCount=60198, loadSuccessCount=60198, loadFailureCount=0, totalLoadTime=6545458, evictionCount=59685, evictionWeight=59685} DEBUG 84000: Annotations Cache stats: CacheStats{hitCount=23075, missCount=60925, loadSuccessCount=60925, loadFailureCount=0, totalLoadTime=6577681, evictionCount=60410, evictionWeight=60410} DEBUG 85000: Annotations Cache stats: CacheStats{hitCount=23367, missCount=61633, loadSuccessCount=61633, loadFailureCount=0, totalLoadTime=6610448, evictionCount=61100, evictionWeight=61100} DEBUG 86000: Annotations Cache stats: CacheStats{hitCount=23634, missCount=62366, loadSuccessCount=62366, loadFailureCount=0, totalLoadTime=6642783, evictionCount=61852, evictionWeight=61852} DEBUG 87000: Annotations Cache stats: CacheStats{hitCount=23911, missCount=63089, loadSuccessCount=63089, loadFailureCount=0, totalLoadTime=6676037, evictionCount=62577, evictionWeight=62577} DEBUG 88000: Annotations Cache stats: CacheStats{hitCount=24165, missCount=63835, loadSuccessCount=63835, loadFailureCount=0, totalLoadTime=6708430, evictionCount=63322, evictionWeight=63322} DEBUG 89000: Annotations Cache stats: CacheStats{hitCount=24521, missCount=64479, loadSuccessCount=64479, loadFailureCount=0, totalLoadTime=6736113, evictionCount=63965, evictionWeight=63965} DEBUG 90000: Annotations Cache stats: CacheStats{hitCount=24794, missCount=65206, loadSuccessCount=65206, loadFailureCount=0, totalLoadTime=6767510, evictionCount=64694, evictionWeight=64694} DEBUG 91000: Annotations Cache stats: CacheStats{hitCount=25071, missCount=65929, loadSuccessCount=65929, loadFailureCount=0, totalLoadTime=6799254, evictionCount=65412, evictionWeight=65412} DEBUG 92000: Annotations Cache stats: CacheStats{hitCount=25343, missCount=66657, loadSuccessCount=66657, loadFailureCount=0, totalLoadTime=6832102, evictionCount=66137, evictionWeight=66137} DEBUG 93000: Annotations Cache stats: CacheStats{hitCount=25770, missCount=67230, loadSuccessCount=67230, loadFailureCount=0, totalLoadTime=6857517, evictionCount=66718, evictionWeight=66718} DEBUG 94000: Annotations Cache stats: CacheStats{hitCount=26092, missCount=67908, loadSuccessCount=67908, loadFailureCount=0, totalLoadTime=6888380, evictionCount=67392, evictionWeight=67392} DEBUG 95000: Annotations Cache stats: CacheStats{hitCount=26492, missCount=68508, loadSuccessCount=68508, loadFailureCount=0, totalLoadTime=6913868, evictionCount=67996, evictionWeight=67996} DEBUG 96000: Annotations Cache stats: CacheStats{hitCount=26854, missCount=69146, loadSuccessCount=69146, loadFailureCount=0, totalLoadTime=6941557, evictionCount=68629, evictionWeight=68629} DEBUG 97000: Annotations Cache stats: CacheStats{hitCount=27186, missCount=69814, loadSuccessCount=69814, loadFailureCount=0, totalLoadTime=6972099, evictionCount=69301, evictionWeight=69301} DEBUG 98000: Annotations Cache stats: CacheStats{hitCount=27493, missCount=70507, loadSuccessCount=70507, loadFailureCount=0, totalLoadTime=7003335, evictionCount=69995, evictionWeight=69995} DEBUG 99000: Annotations Cache stats: CacheStats{hitCount=27763, missCount=71237, loadSuccessCount=71237, loadFailureCount=0, totalLoadTime=7036870, evictionCount=70718, evictionWeight=70718} DEBUG 100000: Annotations Cache stats: CacheStats{hitCount=28057, missCount=71943, loadSuccessCount=71943, loadFailureCount=0, totalLoadTime=7071428, evictionCount=71424, evictionWeight=71424} DEBUG 101000: Annotations Cache stats: CacheStats{hitCount=28414, missCount=72586, loadSuccessCount=72586, loadFailureCount=0, totalLoadTime=7103996, evictionCount=72071, evictionWeight=72071} DEBUG 102000: Annotations Cache stats: CacheStats{hitCount=28716, missCount=73284, loadSuccessCount=73284, loadFailureCount=0, totalLoadTime=7137691, evictionCount=72770, evictionWeight=72770} DEBUG 103000: Annotations Cache stats: CacheStats{hitCount=29002, missCount=73998, loadSuccessCount=73998, loadFailureCount=0, totalLoadTime=7256077, evictionCount=73482, evictionWeight=73482} DEBUG 104000: Annotations Cache stats: CacheStats{hitCount=29305, missCount=74695, loadSuccessCount=74695, loadFailureCount=0, totalLoadTime=7292300, evictionCount=74170, evictionWeight=74170} DEBUG 105000: Annotations Cache stats: CacheStats{hitCount=29647, missCount=75353, loadSuccessCount=75353, loadFailureCount=0, totalLoadTime=7346246, evictionCount=74841, evictionWeight=74841} DEBUG 106000: Annotations Cache stats: CacheStats{hitCount=30004, missCount=75996, loadSuccessCount=75996, loadFailureCount=0, totalLoadTime=7376132, evictionCount=75483, evictionWeight=75483} DEBUG 107000: Annotations Cache stats: CacheStats{hitCount=30249, missCount=76751, loadSuccessCount=76751, loadFailureCount=0, totalLoadTime=7415397, evictionCount=76238, evictionWeight=76238} DEBUG 108000: Annotations Cache stats: CacheStats{hitCount=30526, missCount=77474, loadSuccessCount=77474, loadFailureCount=0, totalLoadTime=7452208, evictionCount=76960, evictionWeight=76960} DEBUG 109000: Annotations Cache stats: CacheStats{hitCount=30858, missCount=78142, loadSuccessCount=78142, loadFailureCount=0, totalLoadTime=7483697, evictionCount=77629, evictionWeight=77629} DEBUG 110000: Annotations Cache stats: CacheStats{hitCount=31130, missCount=78870, loadSuccessCount=78870, loadFailureCount=0, totalLoadTime=7516878, evictionCount=78354, evictionWeight=78354} DEBUG 111000: Annotations Cache stats: CacheStats{hitCount=31476, missCount=79524, loadSuccessCount=79524, loadFailureCount=0, totalLoadTime=7546594, evictionCount=79011, evictionWeight=79011} DEBUG 112000: Annotations Cache stats: CacheStats{hitCount=31678, missCount=80322, loadSuccessCount=80322, loadFailureCount=0, totalLoadTime=7582522, evictionCount=79808, evictionWeight=79808} DEBUG 113000: Annotations Cache stats: CacheStats{hitCount=31943, missCount=81057, loadSuccessCount=81057, loadFailureCount=0, totalLoadTime=7614144, evictionCount=80540, evictionWeight=80540} DEBUG 114000: Annotations Cache stats: CacheStats{hitCount=32128, missCount=81872, loadSuccessCount=81872, loadFailureCount=0, totalLoadTime=7648936, evictionCount=81356, evictionWeight=81356} DEBUG 115000: Annotations Cache stats: CacheStats{hitCount=32454, missCount=82546, loadSuccessCount=82546, loadFailureCount=0, totalLoadTime=7681855, evictionCount=82016, evictionWeight=82016} DEBUG 116000: Annotations Cache stats: CacheStats{hitCount=32729, missCount=83271, loadSuccessCount=83271, loadFailureCount=0, totalLoadTime=7715773, evictionCount=82759, evictionWeight=82759} DEBUG 117000: Annotations Cache stats: CacheStats{hitCount=33012, missCount=83988, loadSuccessCount=83988, loadFailureCount=0, totalLoadTime=7748148, evictionCount=83474, evictionWeight=83474} DEBUG 118000: Annotations Cache stats: CacheStats{hitCount=33331, missCount=84669, loadSuccessCount=84669, loadFailureCount=0, totalLoadTime=7778174, evictionCount=84156, evictionWeight=84156} DEBUG 119000: Annotations Cache stats: CacheStats{hitCount=33563, missCount=85437, loadSuccessCount=85437, loadFailureCount=0, totalLoadTime=7811935, evictionCount=84924, evictionWeight=84924} DEBUG 120000: Annotations Cache stats: CacheStats{hitCount=33880, missCount=86120, loadSuccessCount=86120, loadFailureCount=0, totalLoadTime=7842461, evictionCount=85607, evictionWeight=85607} DEBUG 121000: Annotations Cache stats: CacheStats{hitCount=34158, missCount=86842, loadSuccessCount=86842, loadFailureCount=0, totalLoadTime=7893762, evictionCount=85999, evictionWeight=85999} DEBUG 122000: Annotations Cache stats: CacheStats{hitCount=34301, missCount=87699, loadSuccessCount=87699, loadFailureCount=0, totalLoadTime=7933996, evictionCount=87054, evictionWeight=87054} DEBUG 123000: Annotations Cache stats: CacheStats{hitCount=34559, missCount=88441, loadSuccessCount=88441, loadFailureCount=0, totalLoadTime=7972263, evictionCount=87888, evictionWeight=87889} DEBUG 124000: Annotations Cache stats: CacheStats{hitCount=34933, missCount=89067, loadSuccessCount=89067, loadFailureCount=0, totalLoadTime=7999131, evictionCount=88528, evictionWeight=88528} DEBUG 125000: Annotations Cache stats: CacheStats{hitCount=35238, missCount=89762, loadSuccessCount=89762, loadFailureCount=0, totalLoadTime=8030864, evictionCount=89246, evictionWeight=89246} DEBUG 126000: Annotations Cache stats: CacheStats{hitCount=35548, missCount=90452, loadSuccessCount=90452, loadFailureCount=0, totalLoadTime=8065725, evictionCount=89937, evictionWeight=89937} DEBUG 127000: Annotations Cache stats: CacheStats{hitCount=35768, missCount=91232, loadSuccessCount=91232, loadFailureCount=0, totalLoadTime=8098810, evictionCount=90718, evictionWeight=90718} DEBUG 128000: Annotations Cache stats: CacheStats{hitCount=36070, missCount=91930, loadSuccessCount=91930, loadFailureCount=0, totalLoadTime=8128229, evictionCount=91415, evictionWeight=91415} DEBUG 129000: Annotations Cache stats: CacheStats{hitCount=36246, missCount=92754, loadSuccessCount=92754, loadFailureCount=0, totalLoadTime=8180632, evictionCount=92238, evictionWeight=92238} DEBUG 130000: Annotations Cache stats: CacheStats{hitCount=36452, missCount=93548, loadSuccessCount=93548, loadFailureCount=0, totalLoadTime=8213530, evictionCount=93035, evictionWeight=93035} DEBUG 131000: Annotations Cache stats: CacheStats{hitCount=36773, missCount=94227, loadSuccessCount=94227, loadFailureCount=0, totalLoadTime=8241116, evictionCount=93715, evictionWeight=93715} DEBUG 132000: Annotations Cache stats: CacheStats{hitCount=37085, missCount=94915, loadSuccessCount=94915, loadFailureCount=0, totalLoadTime=8270453, evictionCount=94403, evictionWeight=94403} DEBUG 133000: Annotations Cache stats: CacheStats{hitCount=37382, missCount=95618, loadSuccessCount=95618, loadFailureCount=0, totalLoadTime=8300822, evictionCount=95106, evictionWeight=95106} DEBUG 134000: Annotations Cache stats: CacheStats{hitCount=37663, missCount=96337, loadSuccessCount=96337, loadFailureCount=0, totalLoadTime=8330440, evictionCount=95825, evictionWeight=95825} DEBUG 135000: Annotations Cache stats: CacheStats{hitCount=37957, missCount=97043, loadSuccessCount=97043, loadFailureCount=0, totalLoadTime=8359373, evictionCount=96517, evictionWeight=96517} DEBUG 136000: Annotations Cache stats: CacheStats{hitCount=38234, missCount=97766, loadSuccessCount=97766, loadFailureCount=0, totalLoadTime=8390970, evictionCount=97253, evictionWeight=97253} DEBUG 137000: Annotations Cache stats: CacheStats{hitCount=38549, missCount=98451, loadSuccessCount=98451, loadFailureCount=0, totalLoadTime=8427001, evictionCount=97935, evictionWeight=97935} DEBUG 138000: Annotations Cache stats: CacheStats{hitCount=38844, missCount=99156, loadSuccessCount=99156, loadFailureCount=0, totalLoadTime=8456757, evictionCount=98644, evictionWeight=98644} DEBUG 139000: Annotations Cache stats: CacheStats{hitCount=39178, missCount=99822, loadSuccessCount=99822, loadFailureCount=0, totalLoadTime=8485194, evictionCount=99306, evictionWeight=99306} DEBUG 140000: Annotations Cache stats: CacheStats{hitCount=39493, missCount=100507, loadSuccessCount=100507, loadFailureCount=0, totalLoadTime=8514775, evictionCount=99988, evictionWeight=99989} DEBUG 141000: Annotations Cache stats: CacheStats{hitCount=39831, missCount=101169, loadSuccessCount=101169, loadFailureCount=0, totalLoadTime=8541893, evictionCount=100656, evictionWeight=100656} DEBUG 142000: Annotations Cache stats: CacheStats{hitCount=40047, missCount=101953, loadSuccessCount=101953, loadFailureCount=0, totalLoadTime=8574046, evictionCount=101438, evictionWeight=101438} DEBUG 143000: Annotations Cache stats: CacheStats{hitCount=40352, missCount=102648, loadSuccessCount=102648, loadFailureCount=0, totalLoadTime=8603694, evictionCount=102136, evictionWeight=102136} DEBUG 144000: Annotations Cache stats: CacheStats{hitCount=40560, missCount=103440, loadSuccessCount=103440, loadFailureCount=0, totalLoadTime=8637699, evictionCount=102927, evictionWeight=102927} DEBUG 145000: Annotations Cache stats: CacheStats{hitCount=40836, missCount=104164, loadSuccessCount=104164, loadFailureCount=0, totalLoadTime=8668491, evictionCount=103652, evictionWeight=103652} DEBUG 146000: Annotations Cache stats: CacheStats{hitCount=41047, missCount=104953, loadSuccessCount=104953, loadFailureCount=0, totalLoadTime=8701066, evictionCount=104415, evictionWeight=104415} DEBUG 147000: Annotations Cache stats: CacheStats{hitCount=41236, missCount=105764, loadSuccessCount=105764, loadFailureCount=0, totalLoadTime=8734173, evictionCount=105223, evictionWeight=105223} DEBUG 148000: Annotations Cache stats: CacheStats{hitCount=41518, missCount=106482, loadSuccessCount=106482, loadFailureCount=0, totalLoadTime=8764870, evictionCount=105967, evictionWeight=105967} DEBUG 149000: Annotations Cache stats: CacheStats{hitCount=41858, missCount=107142, loadSuccessCount=107142, loadFailureCount=0, totalLoadTime=8793960, evictionCount=106629, evictionWeight=106629} DEBUG 150000: Annotations Cache stats: CacheStats{hitCount=42163, missCount=107837, loadSuccessCount=107837, loadFailureCount=0, totalLoadTime=8825684, evictionCount=107316, evictionWeight=107316} DEBUG 151000: Annotations Cache stats: CacheStats{hitCount=42418, missCount=108582, loadSuccessCount=108582, loadFailureCount=0, totalLoadTime=8859298, evictionCount=108070, evictionWeight=108070} DEBUG 152000: Annotations Cache stats: CacheStats{hitCount=42759, missCount=109241, loadSuccessCount=109241, loadFailureCount=0, totalLoadTime=8888858, evictionCount=108724, evictionWeight=108724} DEBUG 153000: Annotations Cache stats: CacheStats{hitCount=43099, missCount=109901, loadSuccessCount=109901, loadFailureCount=0, totalLoadTime=8917608, evictionCount=109388, evictionWeight=109388} DEBUG 154000: Annotations Cache stats: CacheStats{hitCount=43365, missCount=110635, loadSuccessCount=110635, loadFailureCount=0, totalLoadTime=8949026, evictionCount=110112, evictionWeight=110112} DEBUG 155000: Annotations Cache stats: CacheStats{hitCount=43669, missCount=111331, loadSuccessCount=111331, loadFailureCount=0, totalLoadTime=8981403, evictionCount=110143, evictionWeight=110143} DEBUG 156000: Annotations Cache stats: CacheStats{hitCount=43933, missCount=112067, loadSuccessCount=112067, loadFailureCount=0, totalLoadTime=9014919, evictionCount=111140, evictionWeight=111140} DEBUG 157000: Annotations Cache stats: CacheStats{hitCount=44219, missCount=112781, loadSuccessCount=112781, loadFailureCount=0, totalLoadTime=9047734, evictionCount=111901, evictionWeight=111901} DEBUG 158000: Annotations Cache stats: CacheStats{hitCount=44446, missCount=113554, loadSuccessCount=113554, loadFailureCount=0, totalLoadTime=9082757, evictionCount=111901, evictionWeight=111901} DEBUG 159000: Annotations Cache stats: CacheStats{hitCount=44704, missCount=114296, loadSuccessCount=114296, loadFailureCount=0, totalLoadTime=9119371, evictionCount=113364, evictionWeight=113364} DEBUG 160000: Annotations Cache stats: CacheStats{hitCount=44999, missCount=115001, loadSuccessCount=115001, loadFailureCount=0, totalLoadTime=9152384, evictionCount=114486, evictionWeight=114486} DEBUG 161000: Annotations Cache stats: CacheStats{hitCount=45349, missCount=115651, loadSuccessCount=115651, loadFailureCount=0, totalLoadTime=9180561, evictionCount=115128, evictionWeight=115128} DEBUG 162000: Annotations Cache stats: CacheStats{hitCount=45631, missCount=116369, loadSuccessCount=116369, loadFailureCount=0, totalLoadTime=9210977, evictionCount=115854, evictionWeight=115854} DEBUG 163000: Annotations Cache stats: CacheStats{hitCount=45945, missCount=117055, loadSuccessCount=117055, loadFailureCount=0, totalLoadTime=9238850, evictionCount=116540, evictionWeight=116540} DEBUG 164000: Annotations Cache stats: CacheStats{hitCount=46221, missCount=117779, loadSuccessCount=117779, loadFailureCount=0, totalLoadTime=9268802, evictionCount=117267, evictionWeight=117267} DEBUG 165000: Annotations Cache stats: CacheStats{hitCount=46528, missCount=118472, loadSuccessCount=118472, loadFailureCount=0, totalLoadTime=9296858, evictionCount=117959, evictionWeight=117959} DEBUG 166000: Annotations Cache stats: CacheStats{hitCount=46762, missCount=119238, loadSuccessCount=119238, loadFailureCount=0, totalLoadTime=9328139, evictionCount=118723, evictionWeight=118723} DEBUG 167000: Annotations Cache stats: CacheStats{hitCount=47356, missCount=119644, loadSuccessCount=119644, loadFailureCount=0, totalLoadTime=9344755, evictionCount=119132, evictionWeight=119132} DEBUG 168000: Annotations Cache stats: CacheStats{hitCount=48354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 169000: Annotations Cache stats: CacheStats{hitCount=49354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 170000: Annotations Cache stats: CacheStats{hitCount=50354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 171000: Annotations Cache stats: CacheStats{hitCount=51354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 172000: Annotations Cache stats: CacheStats{hitCount=52354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 173000: Annotations Cache stats: CacheStats{hitCount=53354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 174000: Annotations Cache stats: CacheStats{hitCount=54354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 175000: Annotations Cache stats: CacheStats{hitCount=55354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 176000: Annotations Cache stats: CacheStats{hitCount=56354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 177000: Annotations Cache stats: CacheStats{hitCount=57354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 178000: Annotations Cache stats: CacheStats{hitCount=58354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 179000: Annotations Cache stats: CacheStats{hitCount=59354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 180000: Annotations Cache stats: CacheStats{hitCount=60354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG 181000: Annotations Cache stats: CacheStats{hitCount=61354, missCount=119646, loadSuccessCount=119646, loadFailureCount=0, totalLoadTime=9344858, evictionCount=119134, evictionWeight=119134} DEBUG Loaded OntologyID(Anonymous-2) DEBUG owlParse: timing=5296 DEBUG rioParse: timing=5297 WARN biolink:has_evidence is not a valid IRI. DEBUG Injecting object uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl@4dd2849b DEBUG Injecting values [[org.semanticweb.owlapi.oboformat.OBOFormatOWLAPIParserFactory@268c522f, org.semanticweb.owlapi.rio.RioTurtleParserFactory@5067a8e4, org.semanticweb.owlapi.rio.RioNTriplesParserFactory@4eda7a7e, org.semanticweb.owlapi.rdf.turtle.parser.TurtleOntologyParserFactory@7fe29587, org.semanticweb.owlapi.krss2.parser.KRSS2OWLParserFactory@716287c4, org.semanticweb.owlapi.rdf.rdfxml.parser.RDFXMLParserFactory@4d29b8a0, org.semanticweb.owlapi.rio.RioBinaryRdfParserFactory@690bce82, org.semanticweb.owlapi.rio.RioJsonLDParserFactory@4387ab2c, org.semanticweb.owlapi.manchestersyntax.parser.ManchesterOWLSyntaxOntologyParserFactory@569b0915, org.semanticweb.owlapi.rio.RioJsonParserFactory@436be744, org.semanticweb.owlapi.functional.parser.OWLFunctionalSyntaxOWLParserFactory@264d20bc, org.semanticweb.owlapi.owlxml.parser.OWLXMLParserFactory@281046c1, org.semanticweb.owlapi.rio.RioRDFaParserFactory@5217f526, org.semanticweb.owlapi.rio.RioTrigParserFactory@20205351, org.semanticweb.owlapi.rio.RioRDFXMLParserFactory@4375a4e0, org.semanticweb.owlapi.rio.RioTrixParserFactory@3d34d4a1, org.semanticweb.owlapi.rio.RioNQuadsParserFactory@30fa6986, org.semanticweb.owlapi.rio.RioN3ParserFactory@7b2c82c]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyParsers(java.util.Set). DEBUG Injecting values [[uk.ac.manchester.cs.owl.owlapi.OWLOntologyFactoryImpl@3e5b44ac]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyFactories(java.util.Set). DEBUG Injecting values [[org.semanticweb.owlapi.rio.RioBinaryRdfStorerFactory@2a83eea3, org.semanticweb.owlapi.rio.RioTurtleStorerFactory@6a3edbbe, org.semanticweb.owlapi.owlxml.renderer.OWLXMLStorerFactory@7c96c08, org.semanticweb.owlapi.rio.RioJsonStorerFactory@10442186, org.semanticweb.owlapi.rio.RioNQuadsStorerFactory@48ca2ba9, org.semanticweb.owlapi.rio.RioTrigStorerFactory@778fc7e, org.semanticweb.owlapi.rio.RioNTriplesStorerFactory@29ec457, org.semanticweb.owlapi.manchestersyntax.renderer.ManchesterSyntaxStorerFactory@e1e8355, org.semanticweb.owlapi.oboformat.OBOFormatStorerFactory@111f87f4, org.semanticweb.owlapi.dlsyntax.renderer.DLSyntaxStorerFactory@6e186ac, org.semanticweb.owlapi.rio.RioTrixStorerFactory@1e76085b, org.semanticweb.owlapi.rdf.rdfxml.renderer.RDFXMLStorerFactory@1cc332ed, org.semanticweb.owlapi.krss2.renderer.KRSS2OWLSyntaxStorerFactory@bcf9c21, org.semanticweb.owlapi.latex.renderer.LatexStorerFactory@bc61c28, org.semanticweb.owlapi.rio.RioN3StorerFactory@7d09345d, org.semanticweb.owlapi.rio.RioRDFXMLStorerFactory@33679d93, org.semanticweb.owlapi.rio.RioJsonLDStorerFactory@1a1a108f, org.semanticweb.owlapi.rdf.turtle.renderer.TurtleStorerFactory@472a187c, org.semanticweb.owlapi.dlsyntax.renderer.DLSyntaxHTMLStorerFactory@71b8222e, org.semanticweb.owlapi.functional.renderer.FunctionalSyntaxStorerFactory@6a04c49d]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyStorers(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyIRIMapper DEBUG No files found for META-INF/services/org.semanticweb.owlapi.model.OWLOntologyIRIMapper DEBUG Injecting values [[]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setIRIMappers(java.util.Set). DEBUG Saving ontology as OboGraphs JSON Syntax with to IRI file:/Users/joeflack4/projects/omim/omim.json OBO GRAPH ERROR Could not convert ontology to OBO Graph (see https://github.com/geneontology/obographs) For details see: http://robot.obolibrary.org/errors#obo-graph-error java.io.IOException: errors#OBO GRAPH ERROR Could not convert ontology to OBO Graph (see https://github.com/geneontology/obographs) at org.obolibrary.robot.IOHelper.saveOntologyFile(IOHelper.java:1742) at org.obolibrary.robot.IOHelper.saveOntology(IOHelper.java:866) at org.obolibrary.robot.CommandLineHelper.maybeSaveOutput(CommandLineHelper.java:667) at org.obolibrary.robot.RemoveCommand.execute(RemoveCommand.java:202) at org.obolibrary.robot.CommandManager.executeCommand(CommandManager.java:244) at org.obolibrary.robot.CommandManager.execute(CommandManager.java:188) at org.obolibrary.robot.CommandManager.main(CommandManager.java:135) at org.obolibrary.robot.CommandLineInterface.main(CommandLineInterface.java:61) ```

Attempt 3: .ofn

I tried the OWL functional syntax idea you recommended: robot convert --input omim.ttl --output omim.ofn && robot convert -vvv -i omim.ofn -o omim.json. Again nothing helpful in the log.

Log ``` robot convert --input omim.ttl --output omim.ofn robot convert -vvv -i omim.ofn -o omim.json DEBUG Loading ontology omim.ofn with catalog file null DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Injecting object uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl@50468873 DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyIRIMapper DEBUG No files found for META-INF/services/org.semanticweb.owlapi.model.OWLOntologyIRIMapper DEBUG Injecting values [[]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setIRIMappers(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Injecting values [[org.semanticweb.owlapi.rio.RioJsonLDParserFactory@362045c0, org.semanticweb.owlapi.oboformat.OBOFormatOWLAPIParserFactory@1ecee32c, org.semanticweb.owlapi.rio.RioNQuadsParserFactory@42463763, org.semanticweb.owlapi.rio.RioRDFXMLParserFactory@294e5088, org.semanticweb.owlapi.rio.RioTrixParserFactory@d3957fe, org.semanticweb.owlapi.rio.RioN3ParserFactory@3016fd5e, org.semanticweb.owlapi.functional.parser.OWLFunctionalSyntaxOWLParserFactory@30b19518, org.semanticweb.owlapi.rio.RioRDFaParserFactory@2807bdeb, org.semanticweb.owlapi.rio.RioTrigParserFactory@24d09c1, org.semanticweb.owlapi.rio.RioTurtleParserFactory@5e1fa5b1, org.semanticweb.owlapi.rdf.turtle.parser.TurtleOntologyParserFactory@5d9b7a8a, org.semanticweb.owlapi.manchestersyntax.parser.ManchesterOWLSyntaxOntologyParserFactory@2a640157, org.semanticweb.owlapi.rio.RioBinaryRdfParserFactory@56113384, org.semanticweb.owlapi.krss2.parser.KRSS2OWLParserFactory@ff684e1, org.semanticweb.owlapi.owlxml.parser.OWLXMLParserFactory@44b3606b, org.semanticweb.owlapi.rio.RioJsonParserFactory@241e8ea6, org.semanticweb.owlapi.rdf.rdfxml.parser.RDFXMLParserFactory@5b202a3a, org.semanticweb.owlapi.rio.RioNTriplesParserFactory@613a8ee1]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyParsers(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Injecting values [[uk.ac.manchester.cs.owl.owlapi.OWLOntologyFactoryImpl@3a6f2de3]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyFactories(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Injecting values [[org.semanticweb.owlapi.rdf.turtle.renderer.TurtleStorerFactory@7e7b159b, org.semanticweb.owlapi.rio.RioTrigStorerFactory@4233e892, org.semanticweb.owlapi.oboformat.OBOFormatStorerFactory@5c08c46a, org.semanticweb.owlapi.rio.RioN3StorerFactory@333dd51e, org.semanticweb.owlapi.functional.renderer.FunctionalSyntaxStorerFactory@a43ce46, org.semanticweb.owlapi.rio.RioJsonStorerFactory@4097cac, org.semanticweb.owlapi.dlsyntax.renderer.DLSyntaxHTMLStorerFactory@2d36e77e, org.semanticweb.owlapi.latex.renderer.LatexStorerFactory@2dd29a59, org.semanticweb.owlapi.rdf.rdfxml.renderer.RDFXMLStorerFactory@65fe9e33, org.semanticweb.owlapi.rio.RioNQuadsStorerFactory@710b18a6, org.semanticweb.owlapi.rio.RioJsonLDStorerFactory@6f2cfcc2, org.semanticweb.owlapi.manchestersyntax.renderer.ManchesterSyntaxStorerFactory@2320fa6f, org.semanticweb.owlapi.dlsyntax.renderer.DLSyntaxStorerFactory@8c11eee, org.semanticweb.owlapi.owlxml.renderer.OWLXMLStorerFactory@3724af13, org.semanticweb.owlapi.rio.RioTrixStorerFactory@555cf22, org.semanticweb.owlapi.rio.RioNTriplesStorerFactory@25e2ab5a, org.semanticweb.owlapi.rio.RioBinaryRdfStorerFactory@c35172e, org.semanticweb.owlapi.rio.RioRDFXMLStorerFactory@655ef322, org.semanticweb.owlapi.rio.RioTurtleStorerFactory@319bc845, org.semanticweb.owlapi.krss2.renderer.KRSS2OWLSyntaxStorerFactory@77a7cf58]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyStorers(java.util.Set). DEBUG 1000: Annotations Cache stats: CacheStats{hitCount=996, missCount=4, loadSuccessCount=4, loadFailureCount=0, totalLoadTime=88214, evictionCount=0, evictionWeight=0} DEBUG 2000: Annotations Cache stats: CacheStats{hitCount=1994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 3000: Annotations Cache stats: CacheStats{hitCount=2994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 4000: Annotations Cache stats: CacheStats{hitCount=3994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 5000: Annotations Cache stats: CacheStats{hitCount=4994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 6000: Annotations Cache stats: CacheStats{hitCount=5994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 7000: Annotations Cache stats: CacheStats{hitCount=6994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 8000: Annotations Cache stats: CacheStats{hitCount=7994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 9000: Annotations Cache stats: CacheStats{hitCount=8994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 10000: Annotations Cache stats: CacheStats{hitCount=9994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 11000: Annotations Cache stats: CacheStats{hitCount=10994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 12000: Annotations Cache stats: CacheStats{hitCount=11994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 13000: Annotations Cache stats: CacheStats{hitCount=12994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG 14000: Annotations Cache stats: CacheStats{hitCount=13994, missCount=6, loadSuccessCount=6, loadFailureCount=0, totalLoadTime=116435, evictionCount=0, evictionWeight=0} DEBUG Saving ontology as OboGraphs JSON Syntax with to IRI file:/Users/joeflack4/projects/omim/omim.json OBO GRAPH ERROR Could not convert ontology to OBO Graph (see https://github.com/geneontology/obographs) For details see: http://robot.obolibrary.org/errors#obo-graph-error java.io.IOException: errors#OBO GRAPH ERROR Could not convert ontology to OBO Graph (see https://github.com/geneontology/obographs) at org.obolibrary.robot.IOHelper.saveOntologyFile(IOHelper.java:1742) at org.obolibrary.robot.IOHelper.saveOntology(IOHelper.java:866) at org.obolibrary.robot.CommandLineHelper.maybeSaveOutput(CommandLineHelper.java:667) at org.obolibrary.robot.ConvertCommand.execute(ConvertCommand.java:141) at org.obolibrary.robot.CommandManager.executeCommand(CommandManager.java:244) at org.obolibrary.robot.CommandManager.execute(CommandManager.java:188) at org.obolibrary.robot.CommandManager.main(CommandManager.java:135) at org.obolibrary.robot.CommandLineInterface.main(CommandLineInterface.java:61) ```

Attempt 4: Remove biolink:has_evidence in initial .ttl

Just trying random stuff. Tried a run removing biolink:has_evidence completely from the initial ingest, but still failing with the same error and no apparent useful information in log.

Log ``` make all ... robot convert -i omim.ttl -o omim.json DEBUG Loading ontology omim.ttl with catalog file null DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyManager DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLDataFactory DEBUG Injecting object uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl@50468873 DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyIRIMapper DEBUG No files found for META-INF/services/org.semanticweb.owlapi.model.OWLOntologyIRIMapper DEBUG Injecting values [[]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setIRIMappers(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.io.OWLParserFactory DEBUG Injecting values [[org.semanticweb.owlapi.rio.RioJsonLDParserFactory@362045c0, org.semanticweb.owlapi.oboformat.OBOFormatOWLAPIParserFactory@1ecee32c, org.semanticweb.owlapi.rio.RioNQuadsParserFactory@42463763, org.semanticweb.owlapi.rio.RioRDFXMLParserFactory@294e5088, org.semanticweb.owlapi.rio.RioTrixParserFactory@d3957fe, org.semanticweb.owlapi.rio.RioN3ParserFactory@3016fd5e, org.semanticweb.owlapi.functional.parser.OWLFunctionalSyntaxOWLParserFactory@30b19518, org.semanticweb.owlapi.rio.RioRDFaParserFactory@2807bdeb, org.semanticweb.owlapi.rio.RioTrigParserFactory@24d09c1, org.semanticweb.owlapi.rio.RioTurtleParserFactory@5e1fa5b1, org.semanticweb.owlapi.rdf.turtle.parser.TurtleOntologyParserFactory@5d9b7a8a, org.semanticweb.owlapi.manchestersyntax.parser.ManchesterOWLSyntaxOntologyParserFactory@2a640157, org.semanticweb.owlapi.rio.RioBinaryRdfParserFactory@56113384, org.semanticweb.owlapi.krss2.parser.KRSS2OWLParserFactory@ff684e1, org.semanticweb.owlapi.owlxml.parser.OWLXMLParserFactory@44b3606b, org.semanticweb.owlapi.rio.RioJsonParserFactory@241e8ea6, org.semanticweb.owlapi.rdf.rdfxml.parser.RDFXMLParserFactory@5b202a3a, org.semanticweb.owlapi.rio.RioNTriplesParserFactory@613a8ee1]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyParsers(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLOntologyFactory DEBUG Injecting values [[uk.ac.manchester.cs.owl.owlapi.OWLOntologyFactoryImpl@3a6f2de3]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyFactories(java.util.Set). DEBUG Loading file META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Loading URL for service jar:file:/usr/local/bin/robot.jar!/META-INF/services/org.semanticweb.owlapi.model.OWLStorerFactory DEBUG Injecting values [[org.semanticweb.owlapi.rdf.turtle.renderer.TurtleStorerFactory@7e7b159b, org.semanticweb.owlapi.rio.RioTrigStorerFactory@4233e892, org.semanticweb.owlapi.oboformat.OBOFormatStorerFactory@5c08c46a, org.semanticweb.owlapi.rio.RioN3StorerFactory@333dd51e, org.semanticweb.owlapi.functional.renderer.FunctionalSyntaxStorerFactory@a43ce46, org.semanticweb.owlapi.rio.RioJsonStorerFactory@4097cac, org.semanticweb.owlapi.dlsyntax.renderer.DLSyntaxHTMLStorerFactory@2d36e77e, org.semanticweb.owlapi.latex.renderer.LatexStorerFactory@2dd29a59, org.semanticweb.owlapi.rdf.rdfxml.renderer.RDFXMLStorerFactory@65fe9e33, org.semanticweb.owlapi.rio.RioNQuadsStorerFactory@710b18a6, org.semanticweb.owlapi.rio.RioJsonLDStorerFactory@6f2cfcc2, org.semanticweb.owlapi.manchestersyntax.renderer.ManchesterSyntaxStorerFactory@2320fa6f, org.semanticweb.owlapi.dlsyntax.renderer.DLSyntaxStorerFactory@8c11eee, org.semanticweb.owlapi.owlxml.renderer.OWLXMLStorerFactory@3724af13, org.semanticweb.owlapi.rio.RioTrixStorerFactory@555cf22, org.semanticweb.owlapi.rio.RioNTriplesStorerFactory@25e2ab5a, org.semanticweb.owlapi.rio.RioBinaryRdfStorerFactory@c35172e, org.semanticweb.owlapi.rio.RioRDFXMLStorerFactory@655ef322, org.semanticweb.owlapi.rio.RioTurtleStorerFactory@319bc845, org.semanticweb.owlapi.krss2.renderer.KRSS2OWLSyntaxStorerFactory@77a7cf58]] on method public void uk.ac.manchester.cs.owl.owlapi.OWLOntologyManagerImpl.setOntologyStorers(java.util.Set). DEBUG Registered service class org.semanticweb.owlapi.rio.RioFunctionalSyntaxParserFactory DEBUG Registered service class org.semanticweb.owlapi.rio.RioManchesterSyntaxParserFactory DEBUG Registered service class org.semanticweb.owlapi.rio.RioOWLXMLParserFactory DEBUG Registered service class org.openrdf.rio.binary.BinaryRDFParserFactory DEBUG Registered service class org.openrdf.rio.n3.N3ParserFactory DEBUG Registered service class org.openrdf.rio.nquads.NQuadsParserFactory DEBUG Registered service class org.openrdf.rio.ntriples.NTriplesParserFactory DEBUG Registered service class org.openrdf.rio.rdfjson.RDFJSONParserFactory DEBUG Registered service class org.openrdf.rio.rdfxml.RDFXMLParserFactory DEBUG Registered service class org.openrdf.rio.trix.TriXParserFactory DEBUG Registered service class org.openrdf.rio.turtle.TurtleParserFactory DEBUG Registered service class org.openrdf.rio.trig.TriGParserFactory DEBUG Registered service class com.github.jsonldjava.sesame.SesameJSONLDParserFactory DEBUG Registered service class org.semarglproject.sesame.rdf.rdfa.SesameRDFaParserFactory DEBUG Registered service class org.openrdf.rio.datatypes.XMLSchemaDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.RDFDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.DBPediaDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.VirtuosoGeometryDatatypeHandler DEBUG Registered service class org.openrdf.rio.datatypes.GeoSPARQLDatatypeHandler DEBUG Registered service class org.openrdf.rio.languages.RFC3066LanguageHandler DEBUG Parsed: 10000 triples DEBUG Parsed: 20000 triples DEBUG Parsed: 30000 triples DEBUG Parsed: 40000 triples DEBUG Parsed: 50000 triples DEBUG Parsed: 60000 triples DEBUG Parsed: 70000 triples DEBUG Parsed: 80000 triples DEBUG Parsed: 90000 triples DEBUG Parsed: 100000 triples DEBUG Parsed: 110000 triples DEBUG Parsed: 120000 triples DEBUG Parsed: 130000 triples DEBUG Parsed: 140000 triples DEBUG Parsed: 150000 triples DEBUG Parsed: 160000 triples DEBUG Parsed: 170000 triples DEBUG Parsed: 180000 triples DEBUG Parsed: 190000 triples DEBUG Parsed: 200000 triples DEBUG Parsed: 210000 triples DEBUG Parsed: 220000 triples DEBUG Parsed: 230000 triples DEBUG Parsed: 240000 triples DEBUG Parsed: 250000 triples DEBUG Parsed: 260000 triples DEBUG Parsed: 270000 triples DEBUG Parsed: 280000 triples DEBUG Parsed: 290000 triples DEBUG Parsed: 300000 triples DEBUG Parsed: 310000 triples DEBUG Parsed: 320000 triples DEBUG Parsed: 330000 triples DEBUG Parsed: 340000 triples DEBUG Parsed: 350000 triples DEBUG Parsed: 360000 triples DEBUG Parsed: 370000 triples DEBUG Parsed: 380000 triples DEBUG Parsed: 390000 triples DEBUG Parsed: 400000 triples DEBUG Parsed: 410000 triples DEBUG Parsed: 420000 triples DEBUG Total number of triples: 425312 DEBUG 1000: Annotations Cache stats: CacheStats{hitCount=318, missCount=682, loadSuccessCount=682, loadFailureCount=0, totalLoadTime=793788, evictionCount=164, evictionWeight=164} DEBUG 2000: Annotations Cache stats: CacheStats{hitCount=517, missCount=1483, loadSuccessCount=1483, loadFailureCount=0, totalLoadTime=1130429, evictionCount=826, evictionWeight=826} DEBUG 3000: Annotations Cache stats: CacheStats{hitCount=755, missCount=2245, loadSuccessCount=2245, loadFailureCount=0, totalLoadTime=1408640, evictionCount=1729, evictionWeight=1729} DEBUG 4000: Annotations Cache stats: CacheStats{hitCount=1021, missCount=2979, loadSuccessCount=2979, loadFailureCount=0, totalLoadTime=1680894, evictionCount=2465, evictionWeight=2465} DEBUG 5000: Annotations Cache stats: CacheStats{hitCount=1275, missCount=3725, loadSuccessCount=3725, loadFailureCount=0, totalLoadTime=1979544, evictionCount=3204, evictionWeight=3204} DEBUG 6000: Annotations Cache stats: CacheStats{hitCount=1486, missCount=4514, loadSuccessCount=4514, loadFailureCount=0, totalLoadTime=2259786, evictionCount=4001, evictionWeight=4001} DEBUG 7000: Annotations Cache stats: CacheStats{hitCount=1787, missCount=5213, loadSuccessCount=5213, loadFailureCount=0, totalLoadTime=2508655, evictionCount=4699, evictionWeight=4699} DEBUG 8000: Annotations Cache stats: CacheStats{hitCount=2150, missCount=5850, loadSuccessCount=5850, loadFailureCount=0, totalLoadTime=2721098, evictionCount=5331, evictionWeight=5331} DEBUG 9000: Annotations Cache stats: CacheStats{hitCount=2480, missCount=6520, loadSuccessCount=6520, loadFailureCount=0, totalLoadTime=2908057, evictionCount=6001, evictionWeight=6001} DEBUG 10000: Annotations Cache stats: CacheStats{hitCount=2780, missCount=7220, loadSuccessCount=7220, loadFailureCount=0, totalLoadTime=3090823, evictionCount=6703, evictionWeight=6703} DEBUG 11000: Annotations Cache stats: CacheStats{hitCount=2987, missCount=8013, loadSuccessCount=8013, loadFailureCount=0, totalLoadTime=3300201, evictionCount=7496, evictionWeight=7496} DEBUG 12000: Annotations Cache stats: CacheStats{hitCount=3259, missCount=8741, loadSuccessCount=8741, loadFailureCount=0, totalLoadTime=3389024, evictionCount=8229, evictionWeight=8229} DEBUG 13000: Annotations Cache stats: CacheStats{hitCount=3540, missCount=9460, loadSuccessCount=9460, loadFailureCount=0, totalLoadTime=3435473, evictionCount=8947, evictionWeight=8947} DEBUG 14000: Annotations Cache stats: CacheStats{hitCount=3767, missCount=10233, loadSuccessCount=10233, loadFailureCount=0, totalLoadTime=3485226, evictionCount=9715, evictionWeight=9715} DEBUG 15000: Annotations Cache stats: CacheStats{hitCount=4131, missCount=10869, loadSuccessCount=10869, loadFailureCount=0, totalLoadTime=3524070, evictionCount=10353, evictionWeight=10353} DEBUG 16000: Annotations Cache stats: CacheStats{hitCount=4381, missCount=11619, loadSuccessCount=11619, loadFailureCount=0, totalLoadTime=3572825, evictionCount=11103, evictionWeight=11103} DEBUG 17000: Annotations Cache stats: CacheStats{hitCount=4634, missCount=12366, loadSuccessCount=12366, loadFailureCount=0, totalLoadTime=3619556, evictionCount=11808, evictionWeight=11808} DEBUG 18000: Annotations Cache stats: CacheStats{hitCount=4923, missCount=13077, loadSuccessCount=13077, loadFailureCount=0, totalLoadTime=3675544, evictionCount=12149, evictionWeight=12149} DEBUG 19000: Annotations Cache stats: CacheStats{hitCount=5214, missCount=13786, loadSuccessCount=13786, loadFailureCount=0, totalLoadTime=3733535, evictionCount=13270, evictionWeight=13270} DEBUG 20000: Annotations Cache stats: CacheStats{hitCount=5486, missCount=14514, loadSuccessCount=14514, loadFailureCount=0, totalLoadTime=3778125, evictionCount=13998, evictionWeight=13998} DEBUG 21000: Annotations Cache stats: CacheStats{hitCount=5771, missCount=15229, loadSuccessCount=15229, loadFailureCount=0, totalLoadTime=3820533, evictionCount=14713, evictionWeight=14713} DEBUG 22000: Annotations Cache stats: CacheStats{hitCount=6018, missCount=15982, loadSuccessCount=15982, loadFailureCount=0, totalLoadTime=3864730, evictionCount=15459, evictionWeight=15459} DEBUG 23000: Annotations Cache stats: CacheStats{hitCount=6255, missCount=16745, loadSuccessCount=16745, loadFailureCount=0, totalLoadTime=3908699, evictionCount=16227, evictionWeight=16227} DEBUG 24000: Annotations Cache stats: CacheStats{hitCount=6539, missCount=17461, loadSuccessCount=17461, loadFailureCount=0, totalLoadTime=3948367, evictionCount=16940, evictionWeight=16940} DEBUG 25000: Annotations Cache stats: CacheStats{hitCount=6810, missCount=18190, loadSuccessCount=18190, loadFailureCount=0, totalLoadTime=3992291, evictionCount=17502, evictionWeight=17502} DEBUG 26000: Annotations Cache stats: CacheStats{hitCount=7067, missCount=18933, loadSuccessCount=18933, loadFailureCount=0, totalLoadTime=4035662, evictionCount=18394, evictionWeight=18394} DEBUG 27000: Annotations Cache stats: CacheStats{hitCount=7274, missCount=19726, loadSuccessCount=19726, loadFailureCount=0, totalLoadTime=4081560, evictionCount=19026, evictionWeight=19026} DEBUG 28000: Annotations Cache stats: CacheStats{hitCount=7596, missCount=20404, loadSuccessCount=20404, loadFailureCount=0, totalLoadTime=4118984, evictionCount=19874, evictionWeight=19874} DEBUG 29000: Annotations Cache stats: CacheStats{hitCount=7870, missCount=21130, loadSuccessCount=21130, loadFailureCount=0, totalLoadTime=4162240, evictionCount=20613, evictionWeight=20614} DEBUG 30000: Annotations Cache stats: CacheStats{hitCount=8168, missCount=21832, loadSuccessCount=21832, loadFailureCount=0, totalLoadTime=4206948, evictionCount=21213, evictionWeight=21213} DEBUG 31000: Annotations Cache stats: CacheStats{hitCount=8446, missCount=22554, loadSuccessCount=22554, loadFailureCount=0, totalLoadTime=4256471, evictionCount=21724, evictionWeight=21724} DEBUG 32000: Annotations Cache stats: CacheStats{hitCount=8796, missCount=23204, loadSuccessCount=23204, loadFailureCount=0, totalLoadTime=4292279, evictionCount=22685, evictionWeight=22686} DEBUG 33000: Annotations Cache stats: CacheStats{hitCount=9021, missCount=23979, loadSuccessCount=23979, loadFailureCount=0, totalLoadTime=4333823, evictionCount=23183, evictionWeight=23183} DEBUG 34000: Annotations Cache stats: CacheStats{hitCount=9250, missCount=24750, loadSuccessCount=24750, loadFailureCount=0, totalLoadTime=4382104, evictionCount=24235, evictionWeight=24235} DEBUG 35000: Annotations Cache stats: CacheStats{hitCount=9591, missCount=25409, loadSuccessCount=25409, loadFailureCount=0, totalLoadTime=4416755, evictionCount=24726, evictionWeight=24726} DEBUG 36000: Annotations Cache stats: CacheStats{hitCount=9917, missCount=26083, loadSuccessCount=26083, loadFailureCount=0, totalLoadTime=4456070, evictionCount=25567, evictionWeight=25567} DEBUG 37000: Annotations Cache stats: CacheStats{hitCount=10127, missCount=26873, loadSuccessCount=26873, loadFailureCount=0, totalLoadTime=4499468, evictionCount=25873, evictionWeight=25873} DEBUG 38000: Annotations Cache stats: CacheStats{hitCount=10310, missCount=27690, loadSuccessCount=27690, loadFailureCount=0, totalLoadTime=4551307, evictionCount=27172, evictionWeight=27172} DEBUG 39000: Annotations Cache stats: CacheStats{hitCount=10651, missCount=28349, loadSuccessCount=28349, loadFailureCount=0, totalLoadTime=4589908, evictionCount=27836, evictionWeight=27836} DEBUG 40000: Annotations Cache stats: CacheStats{hitCount=10956, missCount=29044, loadSuccessCount=29044, loadFailureCount=0, totalLoadTime=4647987, evictionCount=28526, evictionWeight=28526} DEBUG 41000: Annotations Cache stats: CacheStats{hitCount=11219, missCount=29781, loadSuccessCount=29781, loadFailureCount=0, totalLoadTime=4697187, evictionCount=29262, evictionWeight=29262} DEBUG 42000: Annotations Cache stats: CacheStats{hitCount=11482, missCount=30518, loadSuccessCount=30518, loadFailureCount=0, totalLoadTime=4743691, evictionCount=30000, evictionWeight=30000} DEBUG 43000: Annotations Cache stats: CacheStats{hitCount=11778, missCount=31222, loadSuccessCount=31222, loadFailureCount=0, totalLoadTime=4785375, evictionCount=30708, evictionWeight=30708} DEBUG 44000: Annotations Cache stats: CacheStats{hitCount=12055, missCount=31945, loadSuccessCount=31945, loadFailureCount=0, totalLoadTime=4829518, evictionCount=31410, evictionWeight=31410} DEBUG 45000: Annotations Cache stats: CacheStats{hitCount=12351, missCount=32649, loadSuccessCount=32649, loadFailureCount=0, totalLoadTime=4872992, evictionCount=32135, evictionWeight=32135} DEBUG 46000: Annotations Cache stats: CacheStats{hitCount=12716, missCount=33284, loadSuccessCount=33284, loadFailureCount=0, totalLoadTime=4915296, evictionCount=32767, evictionWeight=32767} DEBUG 47000: Annotations Cache stats: CacheStats{hitCount=13018, missCount=33982, loadSuccessCount=33982, loadFailureCount=0, totalLoadTime=4962736, evictionCount=33456, evictionWeight=33456} DEBUG 48000: Annotations Cache stats: CacheStats{hitCount=13266, missCount=34734, loadSuccessCount=34734, loadFailureCount=0, totalLoadTime=5003878, evictionCount=34208, evictionWeight=34208} DEBUG 49000: Annotations Cache stats: CacheStats{hitCount=13616, missCount=35384, loadSuccessCount=35384, loadFailureCount=0, totalLoadTime=5043615, evictionCount=34871, evictionWeight=34871} DEBUG 50000: Annotations Cache stats: CacheStats{hitCount=13793, missCount=36207, loadSuccessCount=36207, loadFailureCount=0, totalLoadTime=5094197, evictionCount=35678, evictionWeight=35678} DEBUG 51000: Annotations Cache stats: CacheStats{hitCount=14044, missCount=36956, loadSuccessCount=36956, loadFailureCount=0, totalLoadTime=5140701, evictionCount=36420, evictionWeight=36420} DEBUG 52000: Annotations Cache stats: CacheStats{hitCount=14268, missCount=37732, loadSuccessCount=37732, loadFailureCount=0, totalLoadTime=5184461, evictionCount=37216, evictionWeight=37216} DEBUG 53000: Annotations Cache stats: CacheStats{hitCount=14571, missCount=38429, loadSuccessCount=38429, loadFailureCount=0, totalLoadTime=5226795, evictionCount=37915, evictionWeight=37915} DEBUG 54000: Annotations Cache stats: CacheStats{hitCount=14858, missCount=39142, loadSuccessCount=39142, loadFailureCount=0, totalLoadTime=5272279, evictionCount=38615, evictionWeight=38615} DEBUG 55000: Annotations Cache stats: CacheStats{hitCount=15111, missCount=39889, loadSuccessCount=39889, loadFailureCount=0, totalLoadTime=5319662, evictionCount=39333, evictionWeight=39333} DEBUG 56000: Annotations Cache stats: CacheStats{hitCount=15463, missCount=40537, loadSuccessCount=40537, loadFailureCount=0, totalLoadTime=5361987, evictionCount=40010, evictionWeight=40010} DEBUG 57000: Annotations Cache stats: CacheStats{hitCount=15725, missCount=41275, loadSuccessCount=41275, loadFailureCount=0, totalLoadTime=5405445, evictionCount=40715, evictionWeight=40715} DEBUG 58000: Annotations Cache stats: CacheStats{hitCount=15945, missCount=42055, loadSuccessCount=42055, loadFailureCount=0, totalLoadTime=5456814, evictionCount=41534, evictionWeight=41534} DEBUG 59000: Annotations Cache stats: CacheStats{hitCount=16088, missCount=42912, loadSuccessCount=42912, loadFailureCount=0, totalLoadTime=5501748, evictionCount=42294, evictionWeight=42294} DEBUG 60000: Annotations Cache stats: CacheStats{hitCount=16391, missCount=43609, loadSuccessCount=43609, loadFailureCount=0, totalLoadTime=5544533, evictionCount=43093, evictionWeight=43093} DEBUG 61000: Annotations Cache stats: CacheStats{hitCount=16688, missCount=44312, loadSuccessCount=44312, loadFailureCount=0, totalLoadTime=5581857, evictionCount=43793, evictionWeight=43793} DEBUG 62000: Annotations Cache stats: CacheStats{hitCount=16906, missCount=45094, loadSuccessCount=45094, loadFailureCount=0, totalLoadTime=5623942, evictionCount=44582, evictionWeight=44582} DEBUG 63000: Annotations Cache stats: CacheStats{hitCount=17211, missCount=45789, loadSuccessCount=45789, loadFailureCount=0, totalLoadTime=5662241, evictionCount=45276, evictionWeight=45276} DEBUG 64000: Annotations Cache stats: CacheStats{hitCount=17476, missCount=46524, loadSuccessCount=46524, loadFailureCount=0, totalLoadTime=5706446, evictionCount=46005, evictionWeight=46005} DEBUG 65000: Annotations Cache stats: CacheStats{hitCount=17687, missCount=47313, loadSuccessCount=47313, loadFailureCount=0, totalLoadTime=5750619, evictionCount=46791, evictionWeight=46791} DEBUG 66000: Annotations Cache stats: CacheStats{hitCount=17985, missCount=48015, loadSuccessCount=48015, loadFailureCount=0, totalLoadTime=5791362, evictionCount=47490, evictionWeight=47490} DEBUG 67000: Annotations Cache stats: CacheStats{hitCount=18225, missCount=48775, loadSuccessCount=48775, loadFailureCount=0, totalLoadTime=5846498, evictionCount=48239, evictionWeight=48239} DEBUG 68000: Annotations Cache stats: CacheStats{hitCount=18539, missCount=49461, loadSuccessCount=49461, loadFailureCount=0, totalLoadTime=5884429, evictionCount=48930, evictionWeight=48930} DEBUG 69000: Annotations Cache stats: CacheStats{hitCount=18846, missCount=50154, loadSuccessCount=50154, loadFailureCount=0, totalLoadTime=5923155, evictionCount=49640, evictionWeight=49640} DEBUG 70000: Annotations Cache stats: CacheStats{hitCount=19167, missCount=50833, loadSuccessCount=50833, loadFailureCount=0, totalLoadTime=5964852, evictionCount=50316, evictionWeight=50316} DEBUG 71000: Annotations Cache stats: CacheStats{hitCount=19420, missCount=51580, loadSuccessCount=51580, loadFailureCount=0, totalLoadTime=6012181, evictionCount=51066, evictionWeight=51066} DEBUG 72000: Annotations Cache stats: CacheStats{hitCount=19710, missCount=52290, loadSuccessCount=52290, loadFailureCount=0, totalLoadTime=6055669, evictionCount=51772, evictionWeight=51772} DEBUG 73000: Annotations Cache stats: CacheStats{hitCount=19970, missCount=53030, loadSuccessCount=53030, loadFailureCount=0, totalLoadTime=6094017, evictionCount=52502, evictionWeight=52502} DEBUG 74000: Annotations Cache stats: CacheStats{hitCount=20326, missCount=53674, loadSuccessCount=53674, loadFailureCount=0, totalLoadTime=6132079, evictionCount=53156, evictionWeight=53156} DEBUG 75000: Annotations Cache stats: CacheStats{hitCount=20606, missCount=54394, loadSuccessCount=54394, loadFailureCount=0, totalLoadTime=6175840, evictionCount=53853, evictionWeight=53853} DEBUG 76000: Annotations Cache stats: CacheStats{hitCount=20876, missCount=55124, loadSuccessCount=55124, loadFailureCount=0, totalLoadTime=6215857, evictionCount=54601, evictionWeight=54601} DEBUG 77000: Annotations Cache stats: CacheStats{hitCount=21184, missCount=55816, loadSuccessCount=55816, loadFailureCount=0, totalLoadTime=6257922, evictionCount=55287, evictionWeight=55287} DEBUG 78000: Annotations Cache stats: CacheStats{hitCount=21484, missCount=56516, loadSuccessCount=56516, loadFailureCount=0, totalLoadTime=6302152, evictionCount=55991, evictionWeight=55991} DEBUG 79000: Annotations Cache stats: CacheStats{hitCount=21791, missCount=57209, loadSuccessCount=57209, loadFailureCount=0, totalLoadTime=6340016, evictionCount=56694, evictionWeight=56694} DEBUG 80000: Annotations Cache stats: CacheStats{hitCount=22049, missCount=57951, loadSuccessCount=57951, loadFailureCount=0, totalLoadTime=6391150, evictionCount=57435, evictionWeight=57435} DEBUG 81000: Annotations Cache stats: CacheStats{hitCount=22278, missCount=58722, loadSuccessCount=58722, loadFailureCount=0, totalLoadTime=6439067, evictionCount=58203, evictionWeight=58203} DEBUG 82000: Annotations Cache stats: CacheStats{hitCount=22543, missCount=59457, loadSuccessCount=59457, loadFailureCount=0, totalLoadTime=6486125, evictionCount=58943, evictionWeight=58943} DEBUG 83000: Annotations Cache stats: CacheStats{hitCount=22849, missCount=60151, loadSuccessCount=60151, loadFailureCount=0, totalLoadTime=6531600, evictionCount=59627, evictionWeight=59627} DEBUG 84000: Annotations Cache stats: CacheStats{hitCount=23127, missCount=60873, loadSuccessCount=60873, loadFailureCount=0, totalLoadTime=6579186, evictionCount=60357, evictionWeight=60357} DEBUG 85000: Annotations Cache stats: CacheStats{hitCount=23424, missCount=61576, loadSuccessCount=61576, loadFailureCount=0, totalLoadTime=6625017, evictionCount=61059, evictionWeight=61059} DEBUG 86000: Annotations Cache stats: CacheStats{hitCount=23702, missCount=62298, loadSuccessCount=62298, loadFailureCount=0, totalLoadTime=6669479, evictionCount=61777, evictionWeight=61777} DEBUG 87000: Annotations Cache stats: CacheStats{hitCount=23978, missCount=63022, loadSuccessCount=63022, loadFailureCount=0, totalLoadTime=6719837, evictionCount=62507, evictionWeight=62507} DEBUG 88000: Annotations Cache stats: CacheStats{hitCount=24228, missCount=63772, loadSuccessCount=63772, loadFailureCount=0, totalLoadTime=6768937, evictionCount=63258, evictionWeight=63258} DEBUG 89000: Annotations Cache stats: CacheStats{hitCount=24589, missCount=64411, loadSuccessCount=64411, loadFailureCount=0, totalLoadTime=6813131, evictionCount=63897, evictionWeight=63897} DEBUG 90000: Annotations Cache stats: CacheStats{hitCount=24858, missCount=65142, loadSuccessCount=65142, loadFailureCount=0, totalLoadTime=6861992, evictionCount=64617, evictionWeight=64617} DEBUG 91000: Annotations Cache stats: CacheStats{hitCount=25137, missCount=65863, loadSuccessCount=65863, loadFailureCount=0, totalLoadTime=6908743, evictionCount=65317, evictionWeight=65317} DEBUG 92000: Annotations Cache stats: CacheStats{hitCount=25410, missCount=66590, loadSuccessCount=66590, loadFailureCount=0, totalLoadTime=6954743, evictionCount=66076, evictionWeight=66076} DEBUG 93000: Annotations Cache stats: CacheStats{hitCount=25838, missCount=67162, loadSuccessCount=67162, loadFailureCount=0, totalLoadTime=6989925, evictionCount=66650, evictionWeight=66650} DEBUG 94000: Annotations Cache stats: CacheStats{hitCount=26160, missCount=67840, loadSuccessCount=67840, loadFailureCount=0, totalLoadTime=7040980, evictionCount=67309, evictionWeight=67309} DEBUG 95000: Annotations Cache stats: CacheStats{hitCount=26555, missCount=68445, loadSuccessCount=68445, loadFailureCount=0, totalLoadTime=7077998, evictionCount=67927, evictionWeight=67927} DEBUG 96000: Annotations Cache stats: CacheStats{hitCount=26913, missCount=69087, loadSuccessCount=69087, loadFailureCount=0, totalLoadTime=7116598, evictionCount=68569, evictionWeight=68569} DEBUG 97000: Annotations Cache stats: CacheStats{hitCount=27245, missCount=69755, loadSuccessCount=69755, loadFailureCount=0, totalLoadTime=7157515, evictionCount=69235, evictionWeight=69235} DEBUG 98000: Annotations Cache stats: CacheStats{hitCount=27548, missCount=70452, loadSuccessCount=70452, loadFailureCount=0, totalLoadTime=7197874, evictionCount=69936, evictionWeight=69936} DEBUG 99000: Annotations Cache stats: CacheStats{hitCount=27813, missCount=71187, loadSuccessCount=71187, loadFailureCount=0, totalLoadTime=7249881, evictionCount=70645, evictionWeight=70645} DEBUG 100000: Annotations Cache stats: CacheStats{hitCount=28111, missCount=71889, loadSuccessCount=71889, loadFailureCount=0, totalLoadTime=7298511, evictionCount=71338, evictionWeight=71338} DEBUG 101000: Annotations Cache stats: CacheStats{hitCount=28464, missCount=72536, loadSuccessCount=72536, loadFailureCount=0, totalLoadTime=7337946, evictionCount=72021, evictionWeight=72021} DEBUG 102000: Annotations Cache stats: CacheStats{hitCount=28769, missCount=73231, loadSuccessCount=73231, loadFailureCount=0, totalLoadTime=7386495, evictionCount=72715, evictionWeight=72715} DEBUG 103000: Annotations Cache stats: CacheStats{hitCount=29050, missCount=73950, loadSuccessCount=73950, loadFailureCount=0, totalLoadTime=7434894, evictionCount=73434, evictionWeight=73434} DEBUG 104000: Annotations Cache stats: CacheStats{hitCount=29356, missCount=74644, loadSuccessCount=74644, loadFailureCount=0, totalLoadTime=7479470, evictionCount=74101, evictionWeight=74100} DEBUG 105000: Annotations Cache stats: CacheStats{hitCount=29702, missCount=75298, loadSuccessCount=75298, loadFailureCount=0, totalLoadTime=7520077, evictionCount=74737, evictionWeight=74737} DEBUG 106000: Annotations Cache stats: CacheStats{hitCount=30057, missCount=75943, loadSuccessCount=75943, loadFailureCount=0, totalLoadTime=7561411, evictionCount=75427, evictionWeight=75427} DEBUG 107000: Annotations Cache stats: CacheStats{hitCount=30302, missCount=76698, loadSuccessCount=76698, loadFailureCount=0, totalLoadTime=7605229, evictionCount=76174, evictionWeight=76174} DEBUG 108000: Annotations Cache stats: CacheStats{hitCount=30577, missCount=77423, loadSuccessCount=77423, loadFailureCount=0, totalLoadTime=7655080, evictionCount=76896, evictionWeight=76896} DEBUG 109000: Annotations Cache stats: CacheStats{hitCount=30906, missCount=78094, loadSuccessCount=78094, loadFailureCount=0, totalLoadTime=7695952, evictionCount=77575, evictionWeight=77575} DEBUG 110000: Annotations Cache stats: CacheStats{hitCount=31178, missCount=78822, loadSuccessCount=78822, loadFailureCount=0, totalLoadTime=7744817, evictionCount=78299, evictionWeight=78299} DEBUG 111000: Annotations Cache stats: CacheStats{hitCount=31527, missCount=79473, loadSuccessCount=79473, loadFailureCount=0, totalLoadTime=7787132, evictionCount=78958, evictionWeight=78958} DEBUG 112000: Annotations Cache stats: CacheStats{hitCount=31740, missCount=80260, loadSuccessCount=80260, loadFailureCount=0, totalLoadTime=7837754, evictionCount=79743, evictionWeight=79743} DEBUG 113000: Annotations Cache stats: CacheStats{hitCount=32006, missCount=80994, loadSuccessCount=80994, loadFailureCount=0, totalLoadTime=7884601, evictionCount=80475, evictionWeight=80475} DEBUG 114000: Annotations Cache stats: CacheStats{hitCount=32190, missCount=81810, loadSuccessCount=81810, loadFailureCount=0, totalLoadTime=7932205, evictionCount=81274, evictionWeight=81274} DEBUG 115000: Annotations Cache stats: CacheStats{hitCount=32519, missCount=82481, loadSuccessCount=82481, loadFailureCount=0, totalLoadTime=7986421, evictionCount=81965, evictionWeight=81965} DEBUG 116000: Annotations Cache stats: CacheStats{hitCount=32790, missCount=83210, loadSuccessCount=83210, loadFailureCount=0, totalLoadTime=8035276, evictionCount=82691, evictionWeight=82691} DEBUG 117000: Annotations Cache stats: CacheStats{hitCount=33071, missCount=83929, loadSuccessCount=83929, loadFailureCount=0, totalLoadTime=8080622, evictionCount=83393, evictionWeight=83393} DEBUG 118000: Annotations Cache stats: CacheStats{hitCount=33386, missCount=84614, loadSuccessCount=84614, loadFailureCount=0, totalLoadTime=8135521, evictionCount=84100, evictionWeight=84100} DEBUG 119000: Annotations Cache stats: CacheStats{hitCount=33617, missCount=85383, loadSuccessCount=85383, loadFailureCount=0, totalLoadTime=8181138, evictionCount=84851, evictionWeight=84851} DEBUG 120000: Annotations Cache stats: CacheStats{hitCount=33936, missCount=86064, loadSuccessCount=86064, loadFailureCount=0, totalLoadTime=8224088, evictionCount=85545, evictionWeight=85545} DEBUG 121000: Annotations Cache stats: CacheStats{hitCount=34213, missCount=86787, loadSuccessCount=86787, loadFailureCount=0, totalLoadTime=8269737, evictionCount=86256, evictionWeight=86256} DEBUG 122000: Annotations Cache stats: CacheStats{hitCount=34355, missCount=87645, loadSuccessCount=87645, loadFailureCount=0, totalLoadTime=8318496, evictionCount=87124, evictionWeight=87124} DEBUG 123000: Annotations Cache stats: CacheStats{hitCount=34612, missCount=88388, loadSuccessCount=88388, loadFailureCount=0, totalLoadTime=8363972, evictionCount=87853, evictionWeight=87853} DEBUG 124000: Annotations Cache stats: CacheStats{hitCount=34984, missCount=89016, loadSuccessCount=89016, loadFailureCount=0, totalLoadTime=8401221, evictionCount=88492, evictionWeight=88492} DEBUG 125000: Annotations Cache stats: CacheStats{hitCount=35287, missCount=89713, loadSuccessCount=89713, loadFailureCount=0, totalLoadTime=8457205, evictionCount=89198, evictionWeight=89198} DEBUG 126000: Annotations Cache stats: CacheStats{hitCount=35593, missCount=90407, loadSuccessCount=90407, loadFailureCount=0, totalLoadTime=8502724, evictionCount=89883, evictionWeight=89883} DEBUG 127000: Annotations Cache stats: CacheStats{hitCount=35815, missCount=91185, loadSuccessCount=91185, loadFailureCount=0, totalLoadTime=8549240, evictionCount=90654, evictionWeight=90654} DEBUG 128000: Annotations Cache stats: CacheStats{hitCount=36117, missCount=91883, loadSuccessCount=91883, loadFailureCount=0, totalLoadTime=8588560, evictionCount=91366, evictionWeight=91366} DEBUG 129000: Annotations Cache stats: CacheStats{hitCount=36288, missCount=92712, loadSuccessCount=92712, loadFailureCount=0, totalLoadTime=8641546, evictionCount=92193, evictionWeight=92193} DEBUG 130000: Annotations Cache stats: CacheStats{hitCount=36491, missCount=93509, loadSuccessCount=93509, loadFailureCount=0, totalLoadTime=8689013, evictionCount=92987, evictionWeight=92987} DEBUG 131000: Annotations Cache stats: CacheStats{hitCount=36813, missCount=94187, loadSuccessCount=94187, loadFailureCount=0, totalLoadTime=8728292, evictionCount=93675, evictionWeight=93675} DEBUG 132000: Annotations Cache stats: CacheStats{hitCount=37125, missCount=94875, loadSuccessCount=94875, loadFailureCount=0, totalLoadTime=8768083, evictionCount=94346, evictionWeight=94346} DEBUG 133000: Annotations Cache stats: CacheStats{hitCount=37426, missCount=95574, loadSuccessCount=95574, loadFailureCount=0, totalLoadTime=8810467, evictionCount=95057, evictionWeight=95057} DEBUG 134000: Annotations Cache stats: CacheStats{hitCount=37711, missCount=96289, loadSuccessCount=96289, loadFailureCount=0, totalLoadTime=8858353, evictionCount=95761, evictionWeight=95761} DEBUG 135000: Annotations Cache stats: CacheStats{hitCount=38005, missCount=96995, loadSuccessCount=96995, loadFailureCount=0, totalLoadTime=8901677, evictionCount=96478, evictionWeight=96478} DEBUG 136000: Annotations Cache stats: CacheStats{hitCount=38282, missCount=97718, loadSuccessCount=97718, loadFailureCount=0, totalLoadTime=8946813, evictionCount=97202, evictionWeight=97202} DEBUG 137000: Annotations Cache stats: CacheStats{hitCount=38591, missCount=98409, loadSuccessCount=98409, loadFailureCount=0, totalLoadTime=9001744, evictionCount=97890, evictionWeight=97890} DEBUG 138000: Annotations Cache stats: CacheStats{hitCount=38885, missCount=99115, loadSuccessCount=99115, loadFailureCount=0, totalLoadTime=9045743, evictionCount=98590, evictionWeight=98590} DEBUG 139000: Annotations Cache stats: CacheStats{hitCount=39219, missCount=99781, loadSuccessCount=99781, loadFailureCount=0, totalLoadTime=9084230, evictionCount=99265, evictionWeight=99265} DEBUG 140000: Annotations Cache stats: CacheStats{hitCount=39533, missCount=100467, loadSuccessCount=100467, loadFailureCount=0, totalLoadTime=9131279, evictionCount=99942, evictionWeight=99942} DEBUG 141000: Annotations Cache stats: CacheStats{hitCount=39871, missCount=101129, loadSuccessCount=101129, loadFailureCount=0, totalLoadTime=9171437, evictionCount=100602, evictionWeight=100602} DEBUG 142000: Annotations Cache stats: CacheStats{hitCount=40089, missCount=101911, loadSuccessCount=101911, loadFailureCount=0, totalLoadTime=9227616, evictionCount=101394, evictionWeight=101394} DEBUG 143000: Annotations Cache stats: CacheStats{hitCount=40394, missCount=102606, loadSuccessCount=102606, loadFailureCount=0, totalLoadTime=9270116, evictionCount=102085, evictionWeight=102085} DEBUG 144000: Annotations Cache stats: CacheStats{hitCount=40607, missCount=103393, loadSuccessCount=103393, loadFailureCount=0, totalLoadTime=9313589, evictionCount=102823, evictionWeight=102823} DEBUG 145000: Annotations Cache stats: CacheStats{hitCount=40885, missCount=104115, loadSuccessCount=104115, loadFailureCount=0, totalLoadTime=9358044, evictionCount=103587, evictionWeight=103587} DEBUG 146000: Annotations Cache stats: CacheStats{hitCount=41098, missCount=104902, loadSuccessCount=104902, loadFailureCount=0, totalLoadTime=9414321, evictionCount=104377, evictionWeight=104377} DEBUG 147000: Annotations Cache stats: CacheStats{hitCount=41286, missCount=105714, loadSuccessCount=105714, loadFailureCount=0, totalLoadTime=9474448, evictionCount=105192, evictionWeight=105192} DEBUG 148000: Annotations Cache stats: CacheStats{hitCount=41567, missCount=106433, loadSuccessCount=106433, loadFailureCount=0, totalLoadTime=9514088, evictionCount=105909, evictionWeight=105909} DEBUG 149000: Annotations Cache stats: CacheStats{hitCount=41909, missCount=107091, loadSuccessCount=107091, loadFailureCount=0, totalLoadTime=9555991, evictionCount=106575, evictionWeight=106575} DEBUG 150000: Annotations Cache stats: CacheStats{hitCount=42210, missCount=107790, loadSuccessCount=107790, loadFailureCount=0, totalLoadTime=9596770, evictionCount=107271, evictionWeight=107271} DEBUG 151000: Annotations Cache stats: CacheStats{hitCount=42468, missCount=108532, loadSuccessCount=108532, loadFailureCount=0, totalLoadTime=9640219, evictionCount=108011, evictionWeight=108011} DEBUG 152000: Annotations Cache stats: CacheStats{hitCount=42801, missCount=109199, loadSuccessCount=109199, loadFailureCount=0, totalLoadTime=9678762, evictionCount=108679, evictionWeight=108679} DEBUG 153000: Annotations Cache stats: CacheStats{hitCount=43142, missCount=109858, loadSuccessCount=109858, loadFailureCount=0, totalLoadTime=9719546, evictionCount=109338, evictionWeight=109338} DEBUG 154000: Annotations Cache stats: CacheStats{hitCount=43411, missCount=110589, loadSuccessCount=110589, loadFailureCount=0, totalLoadTime=9761110, evictionCount=110041, evictionWeight=110041} DEBUG 155000: Annotations Cache stats: CacheStats{hitCount=43708, missCount=111292, loadSuccessCount=111292, loadFailureCount=0, totalLoadTime=9800260, evictionCount=110767, evictionWeight=110767} DEBUG 156000: Annotations Cache stats: CacheStats{hitCount=43964, missCount=112036, loadSuccessCount=112036, loadFailureCount=0, totalLoadTime=9841944, evictionCount=111498, evictionWeight=111498} DEBUG 157000: Annotations Cache stats: CacheStats{hitCount=44247, missCount=112753, loadSuccessCount=112753, loadFailureCount=0, totalLoadTime=9883021, evictionCount=112224, evictionWeight=112224} DEBUG 158000: Annotations Cache stats: CacheStats{hitCount=44476, missCount=113524, loadSuccessCount=113524, loadFailureCount=0, totalLoadTime=9930514, evictionCount=112993, evictionWeight=112993} DEBUG 159000: Annotations Cache stats: CacheStats{hitCount=44736, missCount=114264, loadSuccessCount=114264, loadFailureCount=0, totalLoadTime=9979504, evictionCount=113750, evictionWeight=113750} DEBUG 160000: Annotations Cache stats: CacheStats{hitCount=45036, missCount=114964, loadSuccessCount=114964, loadFailureCount=0, totalLoadTime=10024419, evictionCount=114424, evictionWeight=114424} DEBUG 161000: Annotations Cache stats: CacheStats{hitCount=45389, missCount=115611, loadSuccessCount=115611, loadFailureCount=0, totalLoadTime=10074948, evictionCount=115065, evictionWeight=115065} DEBUG 162000: Annotations Cache stats: CacheStats{hitCount=45672, missCount=116328, loadSuccessCount=116328, loadFailureCount=0, totalLoadTime=10122869, evictionCount=115809, evictionWeight=115809} DEBUG 163000: Annotations Cache stats: CacheStats{hitCount=45988, missCount=117012, loadSuccessCount=117012, loadFailureCount=0, totalLoadTime=10168719, evictionCount=116491, evictionWeight=116491} DEBUG 164000: Annotations Cache stats: CacheStats{hitCount=46261, missCount=117739, loadSuccessCount=117739, loadFailureCount=0, totalLoadTime=10210610, evictionCount=117214, evictionWeight=117214} DEBUG 165000: Annotations Cache stats: CacheStats{hitCount=46570, missCount=118430, loadSuccessCount=118430, loadFailureCount=0, totalLoadTime=10251691, evictionCount=117915, evictionWeight=117915} DEBUG 166000: Annotations Cache stats: CacheStats{hitCount=46808, missCount=119192, loadSuccessCount=119192, loadFailureCount=0, totalLoadTime=10292125, evictionCount=118673, evictionWeight=118673} DEBUG 167000: Annotations Cache stats: CacheStats{hitCount=47404, missCount=119596, loadSuccessCount=119596, loadFailureCount=0, totalLoadTime=10321265, evictionCount=119084, evictionWeight=119084} DEBUG 168000: Annotations Cache stats: CacheStats{hitCount=48404, missCount=119596, loadSuccessCount=119596, loadFailureCount=0, totalLoadTime=10321265, evictionCount=119084, evictionWeight=119084} DEBUG 169000: Annotations Cache stats: CacheStats{hitCount=49404, missCount=119596, loadSuccessCount=119596, loadFailureCount=0, totalLoadTime=10321265, evictionCount=119084, evictionWeight=119084} DEBUG 170000: Annotations Cache stats: CacheStats{hitCount=50404, missCount=119596, loadSuccessCount=119596, loadFailureCount=0, totalLoadTime=10321265, evictionCount=119084, evictionWeight=119084} DEBUG 171000: Annotations Cache stats: CacheStats{hitCount=51404, missCount=119596, loadSuccessCount=119596, loadFailureCount=0, totalLoadTime=10321265, evictionCount=119084, evictionWeight=119084} DEBUG 172000: Annotations Cache stats: CacheStats{hitCount=52404, missCount=119596, loadSuccessCount=119596, loadFailureCount=0, totalLoadTime=10321265, evictionCount=119084, evictionWeight=119084} DEBUG 173000: Annotations Cache stats: CacheStats{hitCount=53404, missCount=119596, loadSuccessCount=119596, loadFailureCount=0, totalLoadTime=10321265, evictionCount=119084, evictionWeight=119084} DEBUG Loaded OntologyID(Anonymous-2) DEBUG owlParse: timing=5408 DEBUG rioParse: timing=5409 DEBUG Saving ontology as OboGraphs JSON Syntax with to IRI file:/Users/joeflack4/projects/omim/omim.json OBO GRAPH ERROR Could not convert ontology to OBO Graph (see https://github.com/geneontology/obographs) For details see: http://robot.obolibrary.org/errors#obo-graph-error java.io.IOException: errors#OBO GRAPH ERROR Could not convert ontology to OBO Graph (see https://github.com/geneontology/obographs) at org.obolibrary.robot.IOHelper.saveOntologyFile(IOHelper.java:1742) at org.obolibrary.robot.IOHelper.saveOntology(IOHelper.java:866) at org.obolibrary.robot.CommandLineHelper.maybeSaveOutput(CommandLineHelper.java:667) at org.obolibrary.robot.ConvertCommand.execute(ConvertCommand.java:141) at org.obolibrary.robot.CommandManager.executeCommand(CommandManager.java:244) at org.obolibrary.robot.CommandManager.execute(CommandManager.java:188) at org.obolibrary.robot.CommandManager.main(CommandManager.java:135) at org.obolibrary.robot.CommandLineInterface.main(CommandLineInterface.java:61) ```

Additional info

I tried opening omim.ttl in Protégé, and it initially loaded without error. But then I went to the "Classes" tab, and clicked to expand owl:Thing to explore it, but the app completely froze and crashed. Same for "Individuals by class". In the "Object properties" tab, and I can expand and see 4 RO predicates there.

Questions

  1. Any idea how to find any useful information about the issue?
  2. Should I open a GitHub issue in robot or obographs repos about this?
matentzn commented 1 year ago

After 1 hour of debugging I found the problem: https://github.com/geneontology/obographs/issues/100

I am sure you would have wasted many hours if not days on this, so good I checked it. Here is my technique on how to deal with failures where we don't have an intelligible error message:

  1. Create a minimum subset of the file in question (as small as possible) by successively deleting rows
  2. Try to isolate the rows that cause the problem
  3. If you can isolate it, it means that the problem is a missing row
  4. Create a file that works by looking elsewhere (say, mondo)
  5. Convert it to the serialsation of the file in question
  6. Compare both files line by line (the isolated subset and the first 100 rows of the working file)

This way I stumbled across the fix. Terrible technique but works :D

matentzn commented 1 year ago

( Solve issue by injecting this into the ontology:

<http://purl.obolibrary.org/obo/mondo/omim.owl> rdf:type owl:Ontology .

)

joeflack4 commented 1 year ago

Those are some good steps. I'll file them in my personal notes.

Definitely would have taken me forever if I was to continue cracking at it.

A simple solution now that you found the problem! Will be a quick fix when I'm back from vacation.

Thanks for opening up an issue about it as well.