consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 76400
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 220674 | 220674 | 76400 76400 | 1861 | 7 | 0.375 |
| 220675 | 220675 | 76400 76400 | 62715 | 1 | 0.09375 |
| 220676 | 220676 | 76400 76400 | 157958 | 1 | 0.1875 |
| 220677 | 220677 | 76400 76400 | 196292 | 1 | 0.125 |
| 220678 | 220678 | 76400 76400 | 212074 | 1 | 0.1875 |
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)
);