consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 123533
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 363547 | 363547 | 123533 123533 | 50638 | 2 | 0.180289543821741 |
| 363548 | 363548 | 123533 123533 | 108219 | 1 | 0.31227064997267 |
| 363549 | 363549 | 123533 123533 | 156428 | 1 | 0.156135324986335 |
| 363550 | 363550 | 123533 123533 | 229354 | 3 | 0.31227064997267 |
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)
);