-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
313d56b
commit 13fb3f0
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |