consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 100478
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297051 | 297051 | 100478 100478 | 51310 | 1 | 0.0701653900218938 |
| 297052 | 297052 | 100478 100478 | 74907 | 6 | 0.280661560087575 |
| 297053 | 297053 | 100478 100478 | 134505 | 2 | 0.280661560087575 |
| 297054 | 297054 | 100478 100478 | 140961 | 1 | 0.140330780043788 |
| 297055 | 297055 | 100478 100478 | 197394 | 1 | 0.0935538533625251 |
| 297056 | 297056 | 100478 100478 | 198163 | 2 | 0.114579602104673 |
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)
);