consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 123044
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 362338 | 362338 | 123044 123044 | 49366 | 3 | 0.204904861662399 |
| 362339 | 362339 | 123044 123044 | 127055 | 1 | 0.325266192956291 |
| 362340 | 362340 | 123044 123044 | 144969 | 3 | 0.325266192956291 |
| 362341 | 362341 | 123044 123044 | 157215 | 1 | 0.108422064318764 |
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)
);