forked from JMante1/jet-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInput_Query.txt
More file actions
29 lines (27 loc) · 891 Bytes
/
Input_Query.txt
File metadata and controls
29 lines (27 loc) · 891 Bytes
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
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX sbh: <http://wiki.synbiohub.org/wiki/Terms/synbiohub#>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX sbol: <http://sbols.org/v2#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX purl: <http://purl.obolibrary.org/obo/>
SELECT
?def
?displayId
?title
(count(?def) as ?count)
?role
WHERE {
FILTER regex(?role, "identifiers")
?s sbol:component ?comp .
?comp sbol:definition <https://synbiohub.org/public/igem/BBa_B0012/1> .
?s sbol:component ?comp2 .
?comp2 sbol:definition ?def .
OPTIONAL {?def sbol:role ?role} .
OPTIONAL {?def sbol:displayId ?displayId} .
OPTIONAL {?def dcterms:title ?title} .
}
ORDER BY DESC (?count)
#OFFSET 0 LIMIT 50