consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 222089
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 565459 | 565459 | 222089 222089 | 4047 | 5 | 0.417837236887851 |
| 565460 | 565460 | 222089 222089 | 11728 | 1 | 0.15998964888986 |
| 565461 | 565461 | 222089 222089 | 16127 | 2 | 0.239984473334791 |
| 565462 | 565462 | 222089 222089 | 42239 | 2 | 0.138555100281172 |
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)
);