consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 102365
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 302478 | 302478 | 102365 102365 | 2113 | 6 | 0.299683513260384 |
| 302479 | 302479 | 102365 102365 | 50757 | 1 | 0.0943943916658019 |
| 302480 | 302480 | 102365 102365 | 136532 | 1 | 0.0755155133326415 |
| 302481 | 302481 | 102365 102365 | 159424 | 1 | 0.125859188887736 |
| 302482 | 302482 | 102365 102365 | 186889 | 4 | 0.377577566663207 |
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)
);