consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 80010
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 234154 | 234154 | 80010 80010 | 43799 | 6 | 0.466544195550906 |
| 234155 | 234155 | 80010 80010 | 140401 | 2 | 0.190465870259495 |
| 234156 | 234156 | 80010 80010 | 169008 | 2 | 0.190465870259495 |
| 234157 | 234157 | 80010 80010 | 218754 | 2 | 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)
);