consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 74115
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 211698 | 211698 | 74115 74115 | 11974 | 1 | 0.109141808862396 |
| 211699 | 211699 | 74115 74115 | 57333 | 4 | 0.245499797717406 |
| 211700 | 211700 | 74115 74115 | 97682 | 9 | 0.331239493034332 |
| 211701 | 211701 | 74115 74115 | 144140 | 1 | 0.0873134470899168 |
| 211702 | 211702 | 74115 74115 | 216525 | 1 | 0.072761205908264 |
| 211703 | 211703 | 74115 74115 | 236312 | 3 | 0.132215885615206 |
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)
);