consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 222844
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 567828 | 567828 | 222844 222844 | 28523 | 6 | 0.392557388004235 |
| 567829 | 567829 | 222844 222844 | 138543 | 1 | 0.171110594928384 |
| 567830 | 567830 | 222844 222844 | 248192 | 1 | 0.256665892392577 |
| 567831 | 567831 | 222844 222844 | 282393 | 1 | 0.128332946196288 |
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)
);