consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 74400
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 213864 | 213864 | 74400 74400 | 46135 | 2 | 0.22014440223039 |
| 213865 | 213865 | 74400 74400 | 69051 | 1 | 0.07338146741013 |
| 213866 | 213866 | 74400 74400 | 74094 | 9 | 0.33406318325307 |
| 213867 | 213867 | 74400 74400 | 144761 | 1 | 0.14676293482026 |
| 213868 | 213868 | 74400 74400 | 203989 | 1 | 0.110072201115195 |
| 213869 | 213869 | 74400 74400 | 205385 | 1 | 0.088057760892156 |
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)
);