consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100693
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297939 | 297939 | 100693 100693 | 36925 | 1 | 0.116241861335858 |
| 297940 | 297940 | 100693 100693 | 75690 | 10 | 0.505972089322605 |
| 297941 | 297941 | 100693 100693 | 136281 | 1 | 0.145302326669822 |
| 297942 | 297942 | 100693 100693 | 263075 | 2 | 0.193736435559763 |
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)
);