consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100582
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297451 | 297451 | 100582 100582 | 19023 | 1 | 0.152610086000557 |
| 297452 | 297452 | 100582 100582 | 75294 | 2 | 0.2047479158096 |
| 297453 | 297453 | 100582 100582 | 92903 | 7 | 0.375574347688869 |
| 297454 | 297454 | 100582 100582 | 96398 | 1 | 0.228915129000835 |
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)
);