consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 348006
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 964341 | 964341 | 348006 348006 | 9130 | 2 | 0.336 |
| 964342 | 964342 | 348006 348006 | 33420 | 1 | 0.112 |
| 964343 | 964343 | 348006 348006 | 100960 | 2 | 0.336 |
| 964344 | 964344 | 348006 348006 | 109784 | 1 | 0.168 |
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)
);