consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 101699
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 300350 | 300350 | 101699 101699 | 447 | 2 | 0.237852063016177 |
| 300351 | 300351 | 101699 101699 | 77952 | 1 | 0.205985928914547 |
| 300352 | 300352 | 101699 101699 | 104001 | 1 | 0.102992964457273 |
| 300353 | 300353 | 101699 101699 | 112475 | 5 | 0.411971857829093 |
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)
);