consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 67400
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 189139 | 189139 | 67400 67400 | 2508 | 2 | 0.256094299274292 |
| 189140 | 189140 | 67400 67400 | 75779 | 3 | 0.203262180035535 |
| 189141 | 189141 | 67400 67400 | 102416 | 2 | 0.256094299274292 |
| 189142 | 189142 | 67400 67400 | 108869 | 1 | 0.256094299274292 |
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)
);