consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 102594
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 303138 | 303138 | 102594 102594 | 2671 | 6 | 0.333741892950532 |
| 303139 | 303139 | 102594 102594 | 140732 | 1 | 0.140162812053379 |
| 303140 | 303140 | 102594 102594 | 190364 | 4 | 0.353587218622699 |
| 303141 | 303141 | 102594 102594 | 190407 | 1 | 0.140162812053379 |
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)
);