consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 90377
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 266648 | 266648 | 90377 90377 | 592 | 2 | 0.190465870259495 |
| 266649 | 266649 | 90377 90377 | 26488 | 7 | 0.466544195550906 |
| 266650 | 266650 | 90377 90377 | 52091 | 2 | 0.190465870259495 |
| 266651 | 266651 | 90377 90377 | 271476 | 1 | 0.116636048887726 |
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)
);