consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 4769
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 15539 | 15539 | 4769 4769 | 53064 | 10 | 0.403802594768085 |
| 15540 | 15540 | 4769 4769 | 61354 | 1 | 0.264696522407404 |
| 15541 | 15541 | 4769 4769 | 143042 | 1 | 0.0882321741358014 |
| 15542 | 15542 | 4769 4769 | 240637 | 1 | 0.0756275778306869 |
| 15543 | 15543 | 4769 4769 | 294835 | 1 | 0.132348261203702 |
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)
);