consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 42566
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 122548 | 122548 | 42566 42566 | 104864 | 3 | 0.269400517129763 |
| 122549 | 122549 | 42566 42566 | 184097 | 1 | 0.194271390035497 |
| 122550 | 122550 | 42566 42566 | 240843 | 2 | 0.274741234569273 |
| 122551 | 122551 | 42566 42566 | 255436 | 2 | 0.0868808068405494 |
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)
);