consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 111174
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 329836 | 329836 | 111174 111174 | 23044 | 2 | 0.329488582919524 |
| 329837 | 329837 | 111174 111174 | 129066 | 6 | 0.356336547289131 |
| 329838 | 329838 | 111174 111174 | 131373 | 1 | 0.155322407537294 |
| 329839 | 329839 | 111174 111174 | 182983 | 1 | 0.116491805652971 |
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)
);