consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 68248
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 192088 | 192088 | 68248 68248 | 77679 | 11 | 0.373913748863007 |
| 192089 | 192089 | 68248 68248 | 136016 | 2 | 0.124637916287669 |
| 192090 | 192090 | 68248 68248 | 231112 | 3 | 0.186956874431504 |
| 192091 | 192091 | 68248 68248 | 248214 | 5 | 0.130650533893508 |
| 192092 | 192092 | 68248 68248 | 271090 | 1 | 0.0934784372157519 |
| 192093 | 192093 | 68248 68248 | 287843 | 1 | 0.0747827497726015 |
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)
);