consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 98051
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 289502 | 289502 | 98051 98051 | 59174 | 5 | 0.304373628984839 |
| 289503 | 289503 | 98051 98051 | 136276 | 1 | 0.100405852819037 |
| 289504 | 289504 | 98051 98051 | 168538 | 3 | 0.27847012025148 |
| 289505 | 289505 | 98051 98051 | 210592 | 1 | 0.200811705638074 |
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)
);