consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 74011
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 211111 | 211111 | 74011 74011 | 16919 | 2 | 0.229965156794425 |
| 211112 | 211112 | 74011 74011 | 54018 | 6 | 0.45993031358885 |
| 211113 | 211113 | 74011 74011 | 218452 | 1 | 0.153310104529617 |
| 211114 | 211114 | 74011 74011 | 330536 | 1 | 0.114982578397213 |
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)
);