consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 268301
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 766179 | 766179 | 268301 268301 | 11206 | 8 | 0.365853658536585 |
| 766180 | 766180 | 268301 268301 | 74051 | 1 | 0.0914634146341463 |
| 766181 | 766181 | 268301 268301 | 74082 | 1 | 0.0914634146341463 |
| 766182 | 766182 | 268301 268301 | 169427 | 2 | 0.182926829268293 |
| 766183 | 766183 | 268301 268301 | 225610 | 1 | 0.121951219512195 |
| 766184 | 766184 | 268301 268301 | 246901 | 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)
);