consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 42700
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 122827 | 122827 | 42700 42700 | 49261 | 3 | 0.274414356306474 |
| 122828 | 122828 | 42700 42700 | 110480 | 6 | 0.395773987469196 |
| 122829 | 122829 | 42700 42700 | 203434 | 1 | 0.197886993734598 |
| 122830 | 122830 | 42700 42700 | 229530 | 1 | 0.098943496867299 |
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)
);