consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 102042
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 301436 | 301436 | 102042 102042 | 1287 | 1 | 0.317870270357236 |
| 301437 | 301437 | 102042 102042 | 13828 | 4 | 0.203101017289654 |
| 301438 | 301438 | 102042 102042 | 118649 | 3 | 0.200245722379428 |
| 301439 | 301439 | 102042 102042 | 199975 | 3 | 0.252293800777246 |
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)
);