consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 534082
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 1743896 | 1743896 | 534082 534082 | 3821 | 2 | 0.261817751522259 |
| 1743897 | 1743897 | 534082 534082 | 121946 | 1 | 0.261817751522259 |
| 1743898 | 1743898 | 534082 534082 | 133728 | 3 | 0.207804887095191 |
| 1743899 | 1743899 | 534082 534082 | 206636 | 5 | 0.182965344939553 |
| 1743900 | 1743900 | 534082 534082 | 232782 | 1 | 0.0654544378805647 |
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)
);