consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inchi_id = 123067
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 304876 | 304876 | 103069 103069 | 123067 | 3 | 0.172497163211618 |
| 464261 | 464261 | 166806 166806 | 123067 | 3 | 0.172497163211618 |
| 588454 | 588454 | 229806 229806 | 123067 | 3 | 0.172497163211618 |
| 957649 | 957649 | 344345 344345 | 123067 | 2 | 0.146991380189938 |
| 1657479 | 1657479 | 502239 502239 | 123067 | 5 | 0.173800802674334 |
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)
);