Skip to content

Commit

Permalink
Add missing ChEBI label script
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesaoverton committed Jun 18, 2024
1 parent 313d56b commit 13fb3f0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/scripts/collect-chebi-labels.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
-- Collect labels from ChEBI terms that are not deprecated.
DROP TABLE IF EXISTS label;
CREATE TABLE label (
curie TEXT PRIMARY KEY,
label TEXT UNIQUE
);

INSERT OR IGNORE INTO label
SELECT
subject AS curie,
object AS label
FROM chebi
WHERE predicate = 'rdfs:label'
AND subject NOT IN (
SELECT subject
FROM chebi
WHERE predicate = 'owl:deprecated'
);
CREATE INDEX idx_label_label ON label(label);
ANALYZE label;

0 comments on commit 13fb3f0

Please sign in to comment.