consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 4736
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 15324 | 15324 | 4736 4736 | 42730 | 3 | 0.259636732241006 |
| 15325 | 15325 | 4736 4736 | 51337 | 6 | 0.242670838824242 |
| 15326 | 15326 | 4736 4736 | 116614 | 2 | 0.327121784276363 |
| 15327 | 15327 | 4736 4736 | 178779 | 1 | 0.0654243568552725 |
| 15328 | 15328 | 4736 4736 | 234398 | 1 | 0.0817804460690906 |
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)
);