consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 338
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 1484 | 1484 | 338 338 | 15092 | 5 | 0.317736179451974 |
| 1485 | 1485 | 338 338 | 132143 | 5 | 0.481597990975077 |
| 1486 | 1486 | 338 338 | 296663 | 1 | 0.160532663658359 |
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)
);