consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 40960
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 117349 | 117349 | 40960 40960 | 6831 | 1 | 0.186880533210851 |
| 117350 | 117350 | 40960 40960 | 46128 | 8 | 0.514110613651787 |
| 117351 | 117351 | 40960 40960 | 164713 | 1 | 0.140160399908138 |
| 117352 | 117352 | 40960 40960 | 244856 | 1 | 0.112128319926511 |
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)
);