consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 50529
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 141735 | 141735 | 50529 50529 | 23044 | 3 | 0.331987992462853 |
| 141736 | 141736 | 50529 50529 | 129066 | 10 | 0.356097322010365 |
| 141737 | 141737 | 50529 50529 | 131373 | 1 | 0.13942622000543 |
| 141738 | 141738 | 50529 50529 | 182983 | 2 | 0.14788383846157 |
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)
);