consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100400
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296823 | 296823 | 100400 100400 | 61690 | 3 | 0.253389190722443 |
| 296824 | 296824 | 100400 100400 | 124316 | 7 | 0.365863409125609 |
| 296825 | 296825 | 100400 100400 | 259466 | 1 | 0.23021935823141 |
| 296826 | 296826 | 100400 100400 | 325950 | 1 | 0.115109679115705 |
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)
);