2011-06-02 19:09:12 +00:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
|
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
2011-08-15 16:38:40 +00:00
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
2013-11-06 15:51:33 -05:00
|
|
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
2011-06-02 19:09:12 +00:00
|
|
|
|
|
|
|
CONSTRUCT {
|
2011-08-15 16:38:40 +00:00
|
|
|
?location rdfs:label ?locationName .
|
2011-06-02 19:09:12 +00:00
|
|
|
} WHERE {
|
2013-11-06 15:51:33 -05:00
|
|
|
PERSON_URI core:relatedBy ?authorship .
|
|
|
|
?authorship a core:Authorship .
|
|
|
|
?authorship core:relates ?publication .
|
|
|
|
?publication a obo:IAO_0000030 .
|
2011-06-02 19:09:12 +00:00
|
|
|
?publication bibo:presentedAt ?event .
|
2013-11-06 15:51:33 -05:00
|
|
|
?event obo:RO_0001025 ?location .
|
2011-08-15 16:38:40 +00:00
|
|
|
?location rdfs:label ?locationName .
|
2011-06-02 19:09:12 +00:00
|
|
|
}
|