consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 100213
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296239 | 296239 | 100213 100213 | 1564 | 1 | 0.146616541353383 |
| 296240 | 296240 | 100213 100213 | 73767 | 6 | 0.293233082706767 |
| 296241 | 296241 | 100213 100213 | 107139 | 2 | 0.293233082706767 |
| 296242 | 296242 | 100213 100213 | 198151 | 2 | 0.0977443609022556 |
| 296243 | 296243 | 100213 100213 | 263363 | 1 | 0.146616541353383 |
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)
);