consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 98844
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 291860 | 291860 | 98844 98844 | 62606 | 2 | 0.210027047143949 |
| 291861 | 291861 | 98844 98844 | 120038 | 5 | 0.35591658882313 |
| 291862 | 291862 | 98844 98844 | 314052 | 2 | 0.234817377263712 |
| 291863 | 291863 | 98844 98844 | 332466 | 1 | 0.156544918175808 |
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)
);