consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 42754
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 123019 | 123019 | 42754 42754 | 119196 | 5 | 0.421583655168592 |
| 123020 | 123020 | 42754 42754 | 137475 | 2 | 0.210791827584296 |
| 123021 | 123021 | 42754 42754 | 170030 | 1 | 0.105395913792148 |
| 123022 | 123022 | 42754 42754 | 238358 | 2 | 0.140527885056197 |
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)
);