consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 182127
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 488376 | 488376 | 182127 182127 | 31404 | 1 | 0.168 |
| 488377 | 488377 | 182127 182127 | 54227 | 3 | 0.336 |
| 488378 | 488378 | 182127 182127 | 88087 | 1 | 0.112 |
| 488379 | 488379 | 182127 182127 | 103470 | 1 | 0.336 |
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)
);