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