consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 4001
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 12991 | 12991 | 4001 4001 | 228140 | 1 | 0.136158820222283 |
| 12992 | 12992 | 4001 4001 | 259311 | 1 | 0.204238230333425 |
| 12993 | 12993 | 4001 4001 | 262792 | 1 | 0.40847646066685 |
CREATE TABLE [consensus_index] (
[inventory_id] integer,
[inchi_id] text,
[consensus_score] text,
[consensus_count] integer,
FOREIGN KEY (inventory_id) REFERENCES inventories(inventory_id),
FOREIGN KEY (inchi_id) REFERENCES substances(inchi_id)
);