consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 42463
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 122228 | 122228 | 42463 42463 | 75778 | 3 | 0.331653467120658 |
| 122229 | 122229 | 42463 42463 | 97134 | 7 | 0.392388607622189 |
| 122230 | 122230 | 42463 42463 | 224718 | 2 | 0.239163535222866 |
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)
);