consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 222353
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 566332 | 566332 | 222353 222353 | 30659 | 6 | 0.323437022982179 |
| 566333 | 566333 | 222353 222353 | 185769 | 1 | 0.13583503785686 |
| 566334 | 566334 | 222353 222353 | 185770 | 4 | 0.407505113570579 |
| 566335 | 566335 | 222353 222353 | 235200 | 1 | 0.101876278392645 |
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)
);