consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 102259
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 302125 | 302125 | 102259 102259 | 1803 | 2 | 0.289066672866751 |
| 302126 | 302126 | 102259 102259 | 194430 | 3 | 0.229432370298814 |
| 302127 | 302127 | 102259 102259 | 281622 | 1 | 0.0722666682166877 |
| 302128 | 302128 | 102259 102259 | 285276 | 3 | 0.229432370298814 |
| 302129 | 302129 | 102259 102259 | 292631 | 1 | 0.0963555576222502 |
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)
);