consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 89096
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 263012 | 263012 | 89096 89096 | 16319 | 4 | 0.382757510864589 |
| 263013 | 263013 | 89096 89096 | 21809 | 1 | 0.0956893777161471 |
| 263014 | 263014 | 89096 89096 | 21810 | 5 | 0.29007595008687 |
| 263015 | 263015 | 89096 89096 | 159442 | 1 | 0.0765515021729177 |
| 263016 | 263016 | 89096 89096 | 174604 | 2 | 0.127585836954863 |
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)
);