consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 100493
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297111 | 297111 | 100493 100493 | 74957 | 2 | 0.143915659578862 |
| 297112 | 297112 | 100493 100493 | 111218 | 6 | 0.321805197845054 |
| 297113 | 297113 | 100493 100493 | 179214 | 1 | 0.160902598922527 |
| 297114 | 297114 | 100493 100493 | 188291 | 1 | 0.107268399281685 |
| 297115 | 297115 | 100493 100493 | 229469 | 1 | 0.160902598922527 |
| 297116 | 297116 | 100493 100493 | 292625 | 1 | 0.0804512994612636 |
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)
);