consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 8730
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 30086 | 30086 | 8730 8730 | 54383 | 9 | 0.498975466470981 |
| 30087 | 30087 | 8730 8730 | 63044 | 1 | 0.107784662406063 |
| 30088 | 30088 | 8730 8730 | 138156 | 2 | 0.220014520827499 |
| 30089 | 30089 | 8730 8730 | 157483 | 1 | 0.134730828007578 |
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)
);