consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 161
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 799 | 799 | 161 161 | 55040 | 10 | 0.326086956521739 |
| 800 | 800 | 161 161 | 179518 | 1 | 0.16304347826087 |
| 801 | 801 | 161 161 | 241461 | 1 | 0.16304347826087 |
| 802 | 802 | 161 161 | 247819 | 2 | 0.326086956521739 |
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)
);