Problem retriving data

Posted by Armando on
URL: http://owlready.306.s1.nabble.com/Problem-retriving-data-tp509.html

Hi guys, I have been working with ontologies provided by oaei. Specifically, I'm working with the anatomy track, and I have been trying to access the synonyms of a class but with no success. Below I will leave an example of the structure of the ontology.

<owl:Class rdf:about="http://mouse.owl#MA_0000004">
    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">trunk</rdfs:label>
    <rdfs:subClassOf rdf:resource="http://mouse.owl#MA_0002433"/>
    <oboInOwl:hasRelatedSynonym rdf:resource="http://mouse.owl#genid1217"/>
</owl:Class>

<rdf:Description rdf:about="http://mouse.owl#genid1217">
    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">body</rdfs:label>
</rdf:Description>

 For example, I'm trying to retrieve all the synonyms related to the class MA_0000004 in the example above will be body.
Thanks