-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add/generate RSC to RSC child-child linksets #29
Comments
For reference, the CHILD_CHILD datasets of 1.5: http://data.openphacts.org/1.5/ims/linksets/RSC/ (for some reasons they were not mentioned in the void back then) |
Here are the PARENT_CHILD relations:
e.g. the types of parent-child relationships are:
|
A naive query: PREFIX void: <http://rdfs.org/ns/void#>
prefix skos: <http://www.w3.org/2004/02/skos/core#>
CONSTRUCT {
?child1 skos:related ?child2.
} WHERE {
?child1 skos:closeMatch ?parent .
?child2 skos:closeMatch ?parent .
FILTER (?child1 < ?child2)
} modify for individual VoIDs to split by the different relationships (the above would effectively be building SUPER_CHILD_CHILD). Something like |
To be generated by RSC.. or can it be made by querying the various PARENT_CHILD linksets,
The text was updated successfully, but these errors were encountered: