consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 111379
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 330412 | 330412 | 111379 111379 | 17092 | 2 | 0.283633261221386 |
| 330413 | 330413 | 111379 111379 | 34123 | 1 | 0.122816804787974 |
| 330414 | 330414 | 111379 111379 | 126796 | 4 | 0.245633609575948 |
| 330415 | 330415 | 111379 111379 | 229475 | 6 | 0.312825808760985 |
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)
);