consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100795
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 298276 | 298276 | 100795 100795 | 13061 | 2 | 0.329790531111702 |
| 298277 | 298277 | 100795 100795 | 93093 | 7 | 0.382599686420053 |
| 298278 | 298278 | 100795 100795 | 106848 | 1 | 0.0932788483680792 |
| 298279 | 298279 | 100795 100795 | 325948 | 1 | 0.155464747280132 |
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)
);