-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
A proposal to annotate OpenTox features by custom RDF data types, in order to avoids custom hacks (e.g. regexp) to identify which values mean toxic or nontoxic compounds.
Example of the RDF for toxicity categories with custom RDF data types (proposal by @egonw)
<http://localhost:8080/ambit2/feature/180>
a ot:Feature ;
ot:acceptValue
"Whatever"^^ot:InconclusiveCategory ,
"Nonmutagen"^^ot:NontoxicCategory ,
"Mutagen"^^ot:ToxicCategory .
ot:ToxicityCategory
rdfs:subClassOf xsd:string .
ot:InconclusiveCategory
a rdfs:Datatype ;
rdfs:subClassOf ot:ToxicityCategory.
ot:NontoxicCategory
a rdfs:Datatype ;
rdfs:subClassOf ot:ToxicityCategory .
ot:ToxicCategory
a rdfs:Datatype ;
rdfs:subClassOf ot:ToxicityCategory .
Previous discussions at http://sourceforge.net/p/ambit/feature-requests/58/
Example implementations:
http://tinyurl.com/ambit58n3
http://tinyurl.com/ambit58json