consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 100723
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 298040 | 298040 | 100723 100723 | 75786 | 2 | 0.273229106889141 |
| 298041 | 298041 | 100723 100723 | 119137 | 1 | 0.182152737926094 |
| 298042 | 298042 | 100723 100723 | 128768 | 7 | 0.494940135750375 |
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)
);