consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 91302
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 269285 | 269285 | 91302 91302 | 30646 | 3 | 0.34376602281251 |
| 269286 | 269286 | 91302 91302 | 126862 | 4 | 0.36420741426453 |
| 269287 | 269287 | 91302 91302 | 163212 | 1 | 0.10827951209503 |
| 269288 | 269288 | 91302 91302 | 199323 | 2 | 0.144372682793374 |
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)
);