My work requires a construction of ontologies modules. For this I need to construct owl files to contain those ontologies. My input is an xml file with parsed and splitted sentences.
<Subject> A tumor </Subject>
<Verb> is </Verb>
<Object> an abnormal growth </Object>
</sentence>
<sentence>
<Subject> A kidney tumor </Subject>
<Verb> is </Verb>
<Object> an abnormal growth </Object>
What I need to do now is:
- convert "subject" and "object" into OntClass
- convert "verb" into a transitive property between "obj" and "sub"
I am new on the ontology domain, may be those are basic questions, but I am struggling with the creation of those files, and especially with the transitive property.
Any help is welcome.