consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 111831
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 331763 | 331763 | 111831 111831 | 24395 | 7 | 0.449214894792398 |
| 331764 | 331764 | 111831 111831 | 104634 | 2 | 0.371620214195859 |
| 331765 | 331765 | 111831 111831 | 260869 | 1 | 0.131387586741945 |
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)
);