consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 100561
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297370 | 297370 | 100561 100561 | 7710 | 1 | 0.120587499005526 |
| 297371 | 297371 | 100561 100561 | 75177 | 9 | 0.426922266630881 |
| 297372 | 297372 | 100561 100561 | 77231 | 1 | 0.0964699992044209 |
| 297373 | 297373 | 100561 100561 | 240462 | 1 | 0.241174998011052 |
| 297374 | 297374 | 100561 100561 | 261752 | 1 | 0.0803916660036841 |
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)
);