consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 91098
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 268746 | 268746 | 91098 91098 | 29814 | 5 | 0.416635317947756 |
| 268747 | 268747 | 91098 91098 | 151405 | 2 | 0.147302829301336 |
| 268748 | 268748 | 91098 91098 | 198836 | 1 | 0.138878439315919 |
| 268749 | 268749 | 91098 91098 | 272525 | 3 | 0.26246380360601 |
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)
);