consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 154963
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 430354 | 430354 | 154963 154963 | 2853 | 6 | 0.333333333333333 |
| 430355 | 430355 | 154963 154963 | 2854 | 1 | 0.111111111111111 |
| 430356 | 430356 | 154963 154963 | 45462 | 1 | 0.166666666666667 |
| 430357 | 430357 | 154963 154963 | 226645 | 1 | 0.0833333333333333 |
| 430358 | 430358 | 154963 154963 | 232883 | 1 | 0.111111111111111 |
| 430359 | 430359 | 154963 154963 | 283139 | 1 | 0.166666666666667 |
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)
);