consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 112482
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 333697 | 333697 | 112482 112482 | 25781 | 4 | 0.32996263671687 |
| 333698 | 333698 | 112482 112482 | 57072 | 1 | 0.0784787830537521 |
| 333699 | 333699 | 112482 112482 | 103066 | 4 | 0.32996263671687 |
| 333700 | 333700 | 112482 112482 | 297076 | 1 | 0.130797971756253 |
| 333701 | 333701 | 112482 112482 | 308882 | 1 | 0.0980984788171901 |
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)
);