Skip to content

Commit 4d8c9e6

Browse files
committed
pushing ignored files
1 parent ad5543e commit 4d8c9e6

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
PREFIX never_in_taxon: <http://purl.obolibrary.org/obo/RO_0002161>
2+
PREFIX present_in_taxon: <http://purl.obolibrary.org/obo/RO_0002175>
3+
PREFIX oboInOwl: <http://www.geneontology.org/formats/oboInOwl#>
4+
PREFIX dcterms: <http://purl.org/dc/terms/>
5+
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
6+
7+
SELECT ?term ?property ?value
8+
WHERE {
9+
VALUES ?property {
10+
never_in_taxon:
11+
present_in_taxon:
12+
foaf:depicted_by
13+
oboInOwl:inSubset
14+
dcterms:contributor }
15+
?term ?property ?value .
16+
FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/BDSO_")))
17+
FILTER (!isIRI(?value))
18+
}
19+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
2+
3+
SELECT ?term ?value
4+
WHERE {
5+
?term rdfs:label ?value .
6+
FILTER (REGEX(?value, "http[s]?[:]"))
7+
FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/BDSO_")))
8+
}
9+

0 commit comments

Comments
 (0)