consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100324
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296553 | 296553 | 100324 100324 | 12065 | 3 | 0.26739900065774 |
| 296554 | 296554 | 100324 100324 | 74158 | 2 | 0.33690162964954 |
| 296555 | 296555 | 100324 100324 | 123350 | 5 | 0.255323690672079 |
| 296556 | 296556 | 100324 100324 | 161401 | 1 | 0.112300543216513 |
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)
);