From 58789beb92263c9a602a1032c92d354d7ca62c45 Mon Sep 17 00:00:00 2001 From: Chris Mungall Date: Fri, 23 Dec 2016 10:57:17 -0800 Subject: [PATCH] Fixing truncated sentence thanks @cmpich --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da81cf8..73e839d 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,8 @@ The basic form is: "graphs": [ { "nodes" : [...], - "edges" : [...], + "edges" : [ + ], }, ... ] @@ -199,7 +200,12 @@ Currently two axiom patterns are defined: Note that these do not necessarily correspond 1:1 to OWL axiom types. The two above are different forms of equivalent classes axiom, -the former suited to cases where we have multiple ontologies with overlapping (... truncated sentence) +the former suited to cases where we have multiple ontologies with the same +concept represented using a different URI in each (for example, a DOID:nnn +URI and a Orphanet:nnn URI with a direct equivalence axiom between them). + +The latter is for so called 'cross-product' or 'genus-differentia' definitions +found in most well-behaved bio-ontologies. See [README-owlmapping.md](README-owlmapping.md) for mor details