consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 224686
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 573325 | 573325 | 224686 224686 | 19064 | 1 | 0.1281286833983 |
| 573326 | 573326 | 224686 224686 | 19613 | 2 | 0.271801982686327 |
| 573327 | 573327 | 224686 224686 | 67140 | 1 | 0.0768772100389802 |
| 573328 | 573328 | 224686 224686 | 125211 | 3 | 0.384386050194901 |
| 573329 | 573329 | 224686 224686 | 178670 | 1 | 0.0960965125487252 |
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)
);