consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 40438
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 115902 | 115902 | 40438 40438 | 32886 | 3 | 0.276354113430658 |
| 115903 | 115903 | 40438 40438 | 96970 | 1 | 0.0996429003370127 |
| 115904 | 115904 | 40438 40438 | 108516 | 5 | 0.398571601348051 |
| 115905 | 115905 | 40438 40438 | 145937 | 1 | 0.0797143202696102 |
| 115906 | 115906 | 40438 40438 | 212997 | 2 | 0.115057710664819 |
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)
);