consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 324472
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 915654 | 915654 | 324472 324472 | 84323 | 2 | 0.194047212267078 |
| 915655 | 915655 | 324472 324472 | 98104 | 1 | 0.274424199328793 |
| 915656 | 915656 | 324472 324472 | 200357 | 1 | 0.0914747331095977 |
| 915657 | 915657 | 324472 324472 | 256330 | 1 | 0.274424199328793 |
| 915658 | 915658 | 324472 324472 | 310357 | 1 | 0.0686060498321983 |
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)
);