consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 8250
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 28442 | 28442 | 8250 8250 | 45750 | 11 | 0.493370085941147 |
| 28443 | 28443 | 8250 8250 | 139011 | 1 | 0.119207038602083 |
| 28444 | 28444 | 8250 8250 | 234936 | 1 | 0.198678397670138 |
| 28445 | 28445 | 8250 8250 | 277655 | 1 | 0.149008798252604 |
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)
);