-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprefix.sql
44 lines (38 loc) · 1.71 KB
/
prefix.sql
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
CREATE TABLE IF NOT EXISTS prefix (
prefix TEXT PRIMARY KEY,
base TEXT NOT NULL
);
INSERT OR IGNORE INTO prefix VALUES
("rdf", "http://www.w3.org/1999/02/22-rdf-syntax-ns#"),
("rdfs", "http://www.w3.org/2000/01/rdf-schema#"),
("xsd", "http://www.w3.org/2001/XMLSchema#"),
("owl", "http://www.w3.org/2002/07/owl#"),
("swrl", "http://www.w3.org/2003/11/swrl#"),
("oio", "http://www.geneontology.org/formats/oboInOwl#"),
("dce", "http://purl.org/dc/elements/1.1/"),
("dct", "http://purl.org/dc/terms/"),
("foaf", "http://xmlns.com/foaf/0.1/"),
("protege", "http://protege.stanford.edu/plugins/owl/protege#"),
("ex", "http://example.com/"),
("BFO", "http://purl.obolibrary.org/obo/BFO_"),
("CHEBI", "http://purl.obolibrary.org/obo/CHEBI_"),
("CL", "http://purl.obolibrary.org/obo/CL_"),
("IAO", "http://purl.obolibrary.org/obo/IAO_"),
("NCBITaxon", "http://purl.obolibrary.org/obo/NCBITaxon_"),
("OBI", "http://purl.obolibrary.org/obo/OBI_"),
("PR", "http://purl.obolibrary.org/obo/PR_"),
-- added for schemas-for-schemaless
("UBERON", "http://purl.obolibrary.org/obo/UBERON_"),
("PATO", "http://purl.obolibrary.org/obo/PATO_"),
--("obo", "http://purl.obolibrary.org/obo/"),
("UP", "http://purl.uniprot.org/uniprot/"),
("UC", "http://purl.uniprot.org/core/"),
("PRO", "http://www.uniprot.org/annotation/PRO_"),
("faldo", "http://biohackathon.org/resource/faldo#"),
("ONTIE", "https://ontology.iedb.org/ontology/ONTIE_"),
("IEDB", "http://iedb.org/"),
("iedb-protein", "http://iedb.org/taxon-protein/"),
("CoVIC", "https://cvdb.ontodev.com/antibody/"),
("ds", "https://cvdb.ontodev.com/dataset/"),
("org", "https://cvdb.ontodev.com/organization/"),
("user", "https://cvdb.ontodev.com/user/");