consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 341380
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 951552 | 951552 | 341380 341380 | 958 | 1 | 0.336 |
| 951553 | 951553 | 341380 341380 | 134084 | 3 | 0.336 |
| 951554 | 951554 | 341380 341380 | 170081 | 1 | 0.112 |
| 951555 | 951555 | 341380 341380 | 281023 | 1 | 0.168 |
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)
);