consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 123548
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 363590 | 363590 | 123548 123548 | 31914 | 1 | 0.098647722605705 |
| 363591 | 363591 | 123548 123548 | 50684 | 3 | 0.273594042630718 |
| 363592 | 363592 | 123548 123548 | 129738 | 5 | 0.39459089042282 |
| 363593 | 363593 | 123548 123548 | 258540 | 1 | 0.19729544521141 |
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)
);