consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 199256
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 501108 | 501108 | 199256 199256 | 9184 | 1 | 0.413919140177227 |
| 501109 | 501109 | 199256 199256 | 73715 | 5 | 0.237734117711684 |
| 501110 | 501110 | 199256 199256 | 75792 | 2 | 0.168981781367625 |
| 501111 | 501111 | 199256 199256 | 188482 | 1 | 0.137973046725742 |
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)
);