consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 42516
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 122424 | 122424 | 42516 42516 | 23351 | 3 | 0.247994774075027 |
| 122425 | 122425 | 42516 42516 | 120623 | 6 | 0.393667165249314 |
| 122426 | 122426 | 42516 42516 | 163466 | 1 | 0.131222388416438 |
| 122427 | 122427 | 42516 42516 | 183486 | 2 | 0.196833582624657 |
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)
);