various and sundry data migration changes

This commit is contained in:
brianjlowe 2013-09-19 14:18:49 -04:00
parent aca312b7cc
commit 6d77fc7871
12 changed files with 65 additions and 24 deletions

View file

@ -0,0 +1,20 @@
PREFIX vivo: <http://vivoweb.org/ontology/core#>
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
CONSTRUCT {
?educationalProcess <http://purl.obolibrary.org/obo/RO_0002234> ?degree .
?degree <http://purl.obolibrary.org/obo/RO_0002353> ?educationalProcess .
?educationalProcess vivo:relates ?org .
?org vivo:relatedBy ?educationalProcess .
} WHERE {
?educationalProcess <http://purl.obolibrary.org/obo/RO_0002234> ?degree .
?person <http://purl.obolibrary.org/obo/RO_0000056> ?educationalProcess .
?educationalProcess a vivo:EducationalProcess .
?educationalProcess <http://purl.obolibrary.org/obo/RO_0002234> ?degree .
OPTIONAL { ?degree <http://purl.obolibrary.org/obo/RO_0002353> ?educationalProcess }
OPTIONAL {
?educationalProcess vivo:relates ?org .
?org a foaf:Organization .
}
}