consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 60011
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 168140 | 168140 | 60011 60011 | 13267 | 2 | 0.146242648605972 |
| 168141 | 168141 | 60011 60011 | 113310 | 3 | 0.358219867717774 |
| 168142 | 168142 | 60011 60011 | 116253 | 1 | 0.179109933858887 |
| 168143 | 168143 | 60011 60011 | 185082 | 1 | 0.0895549669294435 |
| 168144 | 168144 | 60011 60011 | 232395 | 1 | 0.119406622572591 |
| 168145 | 168145 | 60011 60011 | 243353 | 1 | 0.0716439735435548 |
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)
);