consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 4256
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 13854 | 13854 | 4256 4256 | 75293 | 3 | 0.312129326490382 |
| 13855 | 13855 | 4256 4256 | 75971 | 1 | 0.0983145771836855 |
| 13856 | 13856 | 4256 4256 | 134415 | 4 | 0.393258308734742 |
| 13857 | 13857 | 4256 4256 | 248335 | 2 | 0.160547032251668 |
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)
);