consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 68747
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 193277 | 193277 | 68747 68747 | 129830 | 10 | 0.461585220786502 |
| 193278 | 193278 | 68747 68747 | 219018 | 1 | 0.230792610393251 |
| 193279 | 193279 | 68747 68747 | 282987 | 2 | 0.188441377289474 |
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)
);