consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 80089
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 234527 | 234527 | 80089 80089 | 44180 | 1 | 0.334237852946954 |
| 234528 | 234528 | 80089 80089 | 47646 | 3 | 0.265284759687794 |
| 234529 | 234529 | 80089 80089 | 63360 | 4 | 0.123298329578616 |
| 234530 | 234530 | 80089 80089 | 109973 | 5 | 0.253304925433282 |
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)
);