From 6ed1dc47b49a80c4ab1f27b270c5bfb09a7ea0c5 Mon Sep 17 00:00:00 2001 From: Nico Matentzoglu Date: Thu, 14 Apr 2022 12:06:18 +0300 Subject: [PATCH] First draft --- Makefile | 8 +++++++ omapv.owl | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ omapv.tsv | 5 ++++ 3 files changed, 85 insertions(+) create mode 100644 Makefile create mode 100644 omapv.owl create mode 100644 omapv.tsv diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..95524f1 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +ONTBASE=http://w3id.org/omapv +ROBOT=robot + +all: omapv.owl + +omapv.owl: omapv.tsv + $(ROBOT) template --template $< --prefix "OMAPV: http://w3id.org/omapv/vocab/" \ + annotate --ontology-iri $(ONTBASE)/vocab -o $@ diff --git a/omapv.owl b/omapv.owl new file mode 100644 index 0000000..b6d4af7 --- /dev/null +++ b/omapv.owl @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + A match that was determined by comparing string literals associated with the subject and object of the match. + lexical match + + + + + + + + + A match that was determined by comparing the subject and object of the match using a logical reasoner. + logical match + + + + + + + + A match is a correspondence between the subject and an object as determined by some agent, such as a human or a software tool. + + + + + + + diff --git a/omapv.tsv b/omapv.tsv new file mode 100644 index 0000000..ce6560b --- /dev/null +++ b/omapv.tsv @@ -0,0 +1,5 @@ +Element ID Label Description Parent +ID LABEL A dc:description SC % +OMAPV:Match A match is a correspondence between the subject and an object as determined by some agent, such as a human or a software tool. +OMAPV:LexicalMatch lexical match A match that was determined by comparing string literals associated with the subject and object of the match. OMAPV:Match +OMAPV:LogicalMatch logical match A match that was determined by comparing the subject and object of the match using a logical reasoner. OMAPV:Match