consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 42784
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 123143 | 123143 | 42784 42784 | 150142 | 2 | 0.393679336829636 |
| 123144 | 123144 | 42784 42784 | 183913 | 2 | 0.196839668414818 |
| 123145 | 123145 | 42784 42784 | 216202 | 3 | 0.119227138320939 |
| 123146 | 123146 | 42784 42784 | 292308 | 1 | 0.0787358673659272 |
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)
);