consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 100295
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296485 | 296485 | 100295 100295 | 5109 | 4 | 0.222916170516135 |
| 296486 | 296486 | 100295 100295 | 43760 | 1 | 0.0697765322247581 |
| 296487 | 296487 | 100295 100295 | 119800 | 4 | 0.348882661123791 |
| 296488 | 296488 | 100295 100295 | 167825 | 1 | 0.0872206652809476 |
| 296489 | 296489 | 100295 100295 | 174401 | 1 | 0.174441330561895 |
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)
);