consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 60123
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 168556 | 168556 | 60123 60123 | 135166 | 3 | 0.276964802661468 |
| 168557 | 168557 | 60123 60123 | 140595 | 1 | 0.116317928317721 |
| 168558 | 168558 | 60123 60123 | 152140 | 4 | 0.348953784953163 |
| 168559 | 168559 | 60123 60123 | 251303 | 1 | 0.0872384462382908 |
| 168560 | 168560 | 60123 60123 | 276528 | 1 | 0.0697907569906327 |
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)
);