consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 100160
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296029 | 296029 | 100160 100160 | 9748 | 1 | 0.182926829268293 |
| 296030 | 296030 | 100160 100160 | 73643 | 8 | 0.365853658536585 |
| 296031 | 296031 | 100160 100160 | 129654 | 3 | 0.182926829268293 |
| 296032 | 296032 | 100160 100160 | 132521 | 1 | 0.121951219512195 |
| 296033 | 296033 | 100160 100160 | 279975 | 1 | 0.121951219512195 |
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)
);