consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100147
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 295970 | 295970 | 100147 100147 | 73634 | 8 | 0.414893617021277 |
| 295971 | 295971 | 100147 100147 | 99693 | 2 | 0.207446808510638 |
| 295972 | 295972 | 100147 100147 | 203757 | 1 | 0.138297872340426 |
| 295973 | 295973 | 100147 100147 | 280068 | 1 | 0.207446808510638 |
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)
);