consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 80144
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 234754 | 234754 | 80144 80144 | 44436 | 8 | 0.431312474669272 |
| 234755 | 234755 | 80144 80144 | 179489 | 1 | 0.215656237334636 |
| 234756 | 234756 | 80144 80144 | 212218 | 1 | 0.143770824889757 |
| 234757 | 234757 | 80144 80144 | 255456 | 2 | 0.176082580439468 |
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)
);