consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 74130
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 211844 | 211844 | 74130 74130 | 13330 | 2 | 0.218187387230884 |
| 211845 | 211845 | 74130 74130 | 58699 | 9 | 0.364918855024391 |
| 211846 | 211846 | 74130 74130 | 63043 | 1 | 0.0727291290769614 |
| 211847 | 211847 | 74130 74130 | 63226 | 1 | 0.109093693615442 |
| 211848 | 211848 | 74130 74130 | 137264 | 1 | 0.0623392534945383 |
| 211849 | 211849 | 74130 74130 | 234652 | 1 | 0.145458258153923 |
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)
);