consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 212488
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 535465 | 535465 | 212488 212488 | 20758 | 2 | 0.222222222222222 |
| 535466 | 535466 | 212488 212488 | 81171 | 7 | 0.444444444444444 |
| 535467 | 535467 | 212488 212488 | 207786 | 1 | 0.148148148148148 |
| 535468 | 535468 | 212488 212488 | 224757 | 1 | 0.148148148148148 |
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)
);