consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
9 rows where inventory_id = 5056
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 17277 | 17277 | 5056 5056 | 75435 | 5 | 0.350672044687904 |
| 17278 | 17278 | 5056 5056 | 171213 | 2 | 0.143161262757304 |
| 17279 | 17279 | 5056 5056 | 195604 | 2 | 0.101230299698919 |
| 17280 | 17280 | 5056 5056 | 198331 | 1 | 0.0584453407813173 |
| 17281 | 17281 | 5056 5056 | 208530 | 2 | 0.123981290385684 |
| 17282 | 17282 | 5056 5056 | 208531 | 2 | 0.0701344089375807 |
| 17283 | 17283 | 5056 5056 | 291896 | 1 | 0.0500960063839862 |
| 17284 | 17284 | 5056 5056 | 310261 | 1 | 0.0438340055859879 |
| 17285 | 17285 | 5056 5056 | 326635 | 1 | 0.0389635605208782 |
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)
);