consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 60003
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 168110 | 168110 | 60003 60003 | 31615 | 2 | 0.278418418707734 |
| 168111 | 168111 | 60003 60003 | 124121 | 3 | 0.22098084537199 |
| 168112 | 168112 | 60003 60003 | 126920 | 1 | 0.278418418707734 |
| 168113 | 168113 | 60003 60003 | 229849 | 4 | 0.196871551875474 |
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)
);