consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 90203
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 266161 | 266161 | 90203 90203 | 25925 | 7 | 0.375 |
| 266162 | 266162 | 90203 90203 | 141522 | 1 | 0.1875 |
| 266163 | 266163 | 90203 90203 | 170266 | 1 | 0.125 |
| 266164 | 266164 | 90203 90203 | 248936 | 1 | 0.09375 |
| 266165 | 266165 | 90203 90203 | 256840 | 1 | 0.1875 |
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)
);