-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path05_02_diseaseByTarget.ttl
77 lines (71 loc) · 2.98 KB
/
05_02_diseaseByTarget.ttl
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
72
73
74
75
76
77
@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 sio: <http://semanticscience.org/resource/> .
@prefix ops: <http://www.openphacts.org/api#> .
@prefix cito: <http://purl.org/spar/cito/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix ncit: <http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#> .
@prefix uniprot: <http://purl.uniprot.org/core/> .
<#diseaseByTarget> a api:API ;
rdfs:label "Disease"@en ;
api:sparqlEndpoint <http://alpha.openphacts.org:8890/sparql/> ;
api:contentNegotiation api:parameterBased ;
api:variable <#input> ;
api:dataset <http://rdf.imim.es> ;
api:vocabulary <http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#> ;
api:vocabulary <http://semanticscience.org/resource/> ;
api:description "An API configuration to return information about diseases" ;
api:endpoint [
a api:ListEndpoint ;
api:name "Diseases for Target: List" ;
api:description "A list of diseases which correspond to {uri}.";
api:uriTemplate "/disease/byTarget?uri={uri}" ;
api:itemTemplate "{uri}" ;
api:exampleRequestPath "/disease/byTarget?uri=http%3A%2F%2Fpurl.uniprot.org%2Funiprot%2FQ9Y5Y9" ;
api:selector <#diseaseByTargetViewer> ;
api:viewer <#diseaseByTargetViewer> ;
api:defaultViewer <#diseaseByTargetViewer> . ] .
<http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#> api:label "ncit" .
<http://semanticscience.org/resource/> api:label "sio" .
<#input> api:name "uri" ;
api:label "uri";
api:value "A target URI. e.g.: http://purl.uniprot.org/uniprot/Q9Y5Y9" ;
rdfs:range rdfs:Resource .
<#diseaseByTargetViewer> a api:Viewer ;
api:name "diseaseByTargetViewer" ;
api:template
"?item foaf:name ?diseaseName ;
ops:forGene ?dg_gene_uri ;
void:inDataset ?diseaseDataset .
?dg_gene_uri ops:encodes ?uniprot_target_uri ;
void:inDataset ?geneDataset .
?uniprot_target_uri skos:exactMatch ?cw_target_uri ;
void:inDataset <http://purl.uniprot.org> .
?cw_target_uri skos:prefLabel ?cw_prefLabel ;
void:inDataset <http://www.conceptwiki.org> .
";
api:where
"OPTIONAL {GRAPH <http://www.conceptwiki.org> {
?cw_target_uri skos:prefLabel ?cw_prefLabel .
}}
GRAPH <http://purl.uniprot.org> {
?uniprot_target_uri uniprot:existence ?existence .
}
GRAPH <http://rdf.imim.es> {
?gene_disease_assoc sio:SIO_000628 ?dg_gene_uri .
?dg_gene_uri rdf:type ncit:C16612 ;
void:inDataset ?geneDataset .
?gene_disease_assoc sio:SIO_000628 ?item .
?item rdf:type ncit:C7057 ;
foaf:name ?diseaseName ;
void:inDataset ?diseaseDataset .
}" .