consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 102254
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 302104 | 302104 | 102254 102254 | 1798 | 5 | 0.251982945419067 |
| 302105 | 302105 | 102254 102254 | 50743 | 3 | 0.381934724849766 |
| 302106 | 302106 | 102254 102254 | 97260 | 3 | 0.145735373087072 |
| 302107 | 302107 | 102254 102254 | 229810 | 1 | 0.190967362424883 |
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)
);