consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 42434
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 122142 | 122142 | 42434 42434 | 10587 | 3 | 0.331578874369756 |
| 122143 | 122143 | 42434 42434 | 129675 | 5 | 0.417763203518903 |
| 122144 | 122144 | 42434 42434 | 219529 | 1 | 0.208881601759451 |
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)
);