consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 15373
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 49715 | 49715 | 15373 15373 | 27770 | 5 | 0.321116483222388 |
| 49716 | 49716 | 15373 15373 | 133637 | 1 | 0.0754051152549911 |
| 49717 | 49717 | 15373 15373 | 138383 | 1 | 0.131958951696234 |
| 49718 | 49718 | 15373 15373 | 219506 | 1 | 0.0879726344641563 |
| 49719 | 49719 | 15373 15373 | 276651 | 1 | 0.105567161356988 |
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)
);