-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path04_04_pathwayGetCompounds.ttl
More file actions
71 lines (66 loc) · 2.91 KB
/
04_04_pathwayGetCompounds.ttl
File metadata and controls
71 lines (66 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@base <http://www.openphacts.org/api> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/>.
@prefix api: <http://purl.org/linked-data/api/vocab#> .
@prefix rel: <http://vocab.org/relationship/> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix drugbank: <http://bio2rdf.org/drugbank_vocabulary:> .
@prefix sio: <http://semanticscience.org/resource/>
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix cheminf: <http://semanticscience.org/resource/> .
@prefix qudt: <http://qudt.org/1.1/schema/qudt#> .
@prefix ops: <http://www.openphacts.org/api#> .
@prefix cito: <http://purl.org/spar/cito/> .
@prefix wp: <http://vocabularies.wikipathways.org/wp#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix sioc: <http://sioc-project.org/ontology#> .
<#pathway> a api:API ;
rdfs:label "Pathway"@en ;
api:sparqlEndpoint <http://alpha.openphacts.org:8890/sparql/> ;
api:contentNegotiation api:parameterBased ;
api:variable <#input> ;
api:dataset <http://www.wikipathways.org> ;
api:vocabulary <http://vocabularies.wikipathways.org/wp#> ;
api:vocabulary <http://xmlns.com/foaf/0.1/> ;
api:vocabulary <http://purl.org/dc/elements/1.1/> ;
api:vocabulary <http://purl.org/dc/terms/> ;
api:description "An API configuration to return information about pathways." ;
api:endpoint [
a api:ItemEndpoint ;
api:name "Pathway Information: Get Compounds" ;
api:description "A list of compounds that are part of the pathway specified.";
api:uriTemplate "/pathway/getCompounds?uri={uri}" ;
api:itemTemplate "{uri}" ;
api:exampleRequestPath "/pathway/getCompounds?uri=http%3A%2F%2Fidentifiers.org%2Fwikipathways%2FWP1002" ;
api:viewer <#pathwayCompoundViewer> ;
api:defaultViewer <#pathwayCompoundViewer> . ] .
<http://www.wikipathways.org> api:label "WikiPathways" .
<http://vocabularies.wikipathways.org/wp#> api:label "wikipathways" .
<http://xmlns.com/foaf/0.1/> api:label "foaf" .
<http://purl.org/dc/elements/1.1/> api:label "dc" .
<http://purl.org/dc/terms/> api:label "dcterms" .
<#input> api:name "uri" ;
api:label "uri";
api:value "A Pathway URI. e.g.: http://identifiers.org/wikipathways/WP1002" ;
rdfs:range rdfs:Resource .
<#pathwayCompoundViewer> a api:Viewer ;
api:name "pathwayCompoundViewer" ;
api:template
"?ops_item skos:exactMatch ?pw_uri .
?pw_uri sioc:latest_version ?rev .
?rev dc:title ?title ;
dcterms:hasPart ?metabolite ;
void:inDataset <http://www.wikipathways.org> .";
api:where
"GRAPH <http://www.wikipathways.org> {
?rev dc:identifier ?pw_uri ;
dc:title ?title .
?metabolite_internal dcterms:isPartOf ?rev ;
a wp:Metabolite ;
dc:identifier ?metabolite .
}" .