consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 222328
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 566257 | 566257 | 222328 222328 | 15897 | 3 | 0.234502827747873 |
| 566258 | 566258 | 222328 222328 | 22789 | 1 | 0.147727524469709 |
| 566259 | 566259 | 222328 222328 | 28213 | 2 | 0.295455048939417 |
| 566260 | 566260 | 222328 222328 | 84039 | 4 | 0.295455048939417 |
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)
);