consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 40281
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 115497 | 115497 | 40281 40281 | 18694 | 3 | 0.228867815121427 |
| 115498 | 115498 | 40281 40281 | 91876 | 1 | 0.288355377914934 |
| 115499 | 115499 | 40281 40281 | 164443 | 1 | 0.0720888444787335 |
| 115500 | 115500 | 40281 40281 | 229512 | 4 | 0.288355377914934 |
| 115501 | 115501 | 40281 40281 | 333501 | 1 | 0.0961184593049779 |
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)
);