consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 3381
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 11077 | 11077 | 3381 3381 | 10096 | 10 | 0.550506066730279 |
| 11078 | 11078 | 3381 3381 | 76710 | 3 | 0.199182623850758 |
| 11079 | 11079 | 3381 3381 | 182882 | 2 | 0.210788471089653 |
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)
);