consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 112600
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 334011 | 334011 | 112600 112600 | 26063 | 3 | 0.18239464009848 |
| 334012 | 334012 | 112600 112600 | 94017 | 5 | 0.340902741113958 |
| 334013 | 334013 | 112600 112600 | 165557 | 1 | 0.149941287901344 |
| 334014 | 334014 | 112600 112600 | 195094 | 5 | 0.296773073305949 |
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)
);