2011-08-15 16:38:40 +00:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
2013-11-06 15:51:33 -05:00
|
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
2012-06-14 13:40:48 +00:00
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
2011-08-15 16:38:40 +00:00
|
|
|
|
|
|
|
CONSTRUCT {
|
2012-06-14 13:40:48 +00:00
|
|
|
?awardingOrganization rdfs:label ?label
|
2011-08-15 16:38:40 +00:00
|
|
|
} WHERE {
|
|
|
|
{
|
2013-11-06 15:51:33 -05:00
|
|
|
{PERSON_URI core:relatedBy ?investigatorRole .
|
|
|
|
?investigatorRole a core:PrincipalInvestigatorRole
|
|
|
|
}
|
2011-08-15 16:38:40 +00:00
|
|
|
union
|
2013-11-06 15:51:33 -05:00
|
|
|
{PERSON_URI core:relatedBy ?investigatorRole .
|
|
|
|
?investigatorRole a core:CoPrincipalInvestigatorRole
|
|
|
|
}
|
2011-08-15 16:38:40 +00:00
|
|
|
}
|
|
|
|
|
2013-11-06 15:51:33 -05:00
|
|
|
?investigatorRole core:relatedBy ?grant .
|
2011-08-15 16:38:40 +00:00
|
|
|
?grant a core:Grant .
|
2013-11-06 15:51:33 -05:00
|
|
|
?grant core:assignedBy ?awardingOrganization .
|
|
|
|
?awardingOrganization a foaf:Organization .
|
2012-06-14 13:40:48 +00:00
|
|
|
?awardingOrganization rdfs:label ?label
|
2011-08-15 16:38:40 +00:00
|
|
|
}
|