consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 65748
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 184097 | 184097 | 65748 65748 | 1746 | 23 | 0.383516600125891 |
| 184098 | 184098 | 65748 65748 | 112420 | 1 | 0.110086321406091 |
| 184099 | 184099 | 65748 65748 | 139011 | 1 | 0.146781761874788 |
| 184100 | 184100 | 65748 65748 | 150886 | 1 | 0.0880690571248728 |
| 184101 | 184101 | 65748 65748 | 190504 | 1 | 0.146781761874788 |
| 184102 | 184102 | 65748 65748 | 224660 | 2 | 0.110086321406091 |
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)
);