consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100787
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 298246 | 298246 | 100787 100787 | 75907 | 4 | 0.261814073881486 |
| 298247 | 298247 | 100787 100787 | 115571 | 2 | 0.0925652535258372 |
| 298248 | 298248 | 100787 100787 | 128490 | 3 | 0.370261014103349 |
| 298249 | 298249 | 100787 100787 | 225187 | 4 | 0.179758675731185 |
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)
);