consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 8910
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 30563 | 30563 | 8910 8910 | 23968 | 2 | 0.162162162162162 |
| 30564 | 30564 | 8910 8910 | 57186 | 6 | 0.324324324324324 |
| 30565 | 30565 | 8910 8910 | 121065 | 2 | 0.324324324324324 |
| 30566 | 30566 | 8910 8910 | 131994 | 1 | 0.162162162162162 |
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)
);