consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 44
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 306 | 306 | 44 44 | 13954 | 6 | 0.341548540102749 |
| 307 | 307 | 44 44 | 119305 | 11 | 0.432545413290039 |
| 308 | 308 | 44 44 | 190739 | 1 | 0.108434902371461 |
| 309 | 309 | 44 44 | 200114 | 1 | 0.0903624186428845 |
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)
);