consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 12197
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 40275 | 40275 | 12197 12197 | 44729 | 1 | 0.104901281791709 |
| 40276 | 40276 | 12197 12197 | 46175 | 3 | 0.290937945696459 |
| 40277 | 40277 | 12197 12197 | 103002 | 6 | 0.419605127166837 |
| 40278 | 40278 | 12197 12197 | 214275 | 3 | 0.154583850547363 |
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)
);