consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100272
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296412 | 296412 | 100272 100272 | 7005 | 1 | 0.139385089570124 |
| 296413 | 296413 | 100272 100272 | 73947 | 3 | 0.263421312586322 |
| 296414 | 296414 | 100272 100272 | 138965 | 6 | 0.276359267060613 |
| 296415 | 296415 | 100272 100272 | 248129 | 2 | 0.209077634355185 |
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)
);