consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inchi_id = 12101
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 314309 | 314309 | 106034 106034 | 12101 | 5 | 0.380952380952381 |
| 815551 | 815551 | 283292 283292 | 12101 | 1 | 0.2230567893187 |
| 903481 | 903481 | 318449 318449 | 12101 | 3 | 0.375 |
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)
);