Linker for mappings

I have multiple medical terminologies loaded in Stardog - such as Gene Ontology and NCI Thesaurus. I also have a metadata ontology loaded that specifies the identifier, label and definition of each of the loaded medical terminologies. Would I be able to use linker to build mappings between these terminologies - i.e. find synonymous entries?

The metadata ontology looks like this:

<http://www.geneontology.org/GO&gt; rdfs:subClassOf _:genid14 .

_:genid14 a owl:Restriction ;
owl:onProperty :has_preferred_term ;
owl:someValuesFrom rdfs:label .

......

<http://purl.bioontology.org/ontology/MedDRA&gt; rdfs:subClassOf _:genid11 .

_:genid11 a owl:Restriction ;
owl:onProperty :has_preferred_term ;
owl:someValuesFrom skos:prefLabel .

I don't think there's any reason that you couldn't use the linker through the SPARQL service. Home | Stardog Documentation Latest

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.