consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 74022
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 211160 | 211160 | 74022 74022 | 54031 | 6 | 0.276166604498027 |
| 211161 | 211161 | 74022 74022 | 143290 | 1 | 0.0930685706393931 |
| 211162 | 211162 | 74022 74022 | 186816 | 2 | 0.15198033943779 |
| 211163 | 211163 | 74022 74022 | 188143 | 4 | 0.372274282557572 |
| 211164 | 211164 | 74022 74022 | 208928 | 2 | 0.0832430602073696 |
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)
);