consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 201790
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 504469 | 504469 | 201790 201790 | 3017 | 4 | 0.31738923628497 |
| 504470 | 504470 | 201790 201790 | 115160 | 6 | 0.373754975705333 |
| 504471 | 504471 | 201790 201790 | 201175 | 1 | 0.0748093604175738 |
| 504472 | 504472 | 201790 201790 | 218923 | 1 | 0.0897712325010886 |
| 504473 | 504473 | 201790 201790 | 224092 | 1 | 0.112214040626361 |
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)
);