consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 222356
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 566339 | 566339 | 222356 222356 | 30639 | 2 | 0.261803492297873 |
| 566340 | 566340 | 222356 222356 | 114786 | 7 | 0.360315715819725 |
| 566341 | 566341 | 222356 222356 | 229303 | 1 | 0.226728475129441 |
| 566342 | 566342 | 222356 222356 | 229434 | 1 | 0.113364237564721 |
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)
);