consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 2696
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 8887 | 8887 | 2696 2696 | 1445 | 7 | 0.425206043892547 |
| 8888 | 8888 | 2696 2696 | 9826 | 4 | 0.192108516604161 |
| 8889 | 8889 | 2696 2696 | 75172 | 1 | 0.141735347964182 |
| 8890 | 8890 | 2696 2696 | 181732 | 2 | 0.212603021946274 |
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)
);