consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 313048
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 892388 | 892388 | 313048 313048 | 2685 | 3 | 0.336 |
| 892389 | 892389 | 313048 313048 | 99131 | 1 | 0.336 |
| 892390 | 892390 | 313048 313048 | 160755 | 1 | 0.168 |
| 892391 | 892391 | 313048 313048 | 279111 | 1 | 0.112 |
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)
);