consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 98991
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 292287 | 292287 | 98991 98991 | 63135 | 1 | 0.418366584558968 |
| 292288 | 292288 | 98991 98991 | 117385 | 8 | 0.334416797292552 |
| 292289 | 292289 | 98991 98991 | 150607 | 1 | 0.209183292279484 |
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)
);