consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 102046
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 301449 | 301449 | 102046 102046 | 1295 | 4 | 0.198674365042994 |
| 301450 | 301450 | 102046 102046 | 3457 | 1 | 0.0883246331646284 |
| 301451 | 301451 | 102046 102046 | 115632 | 6 | 0.262089702968799 |
| 301452 | 301452 | 102046 102046 | 132007 | 2 | 0.101988501467346 |
| 301453 | 301453 | 102046 102046 | 138997 | 2 | 0.0912212888817294 |
| 301454 | 301454 | 102046 102046 | 192631 | 2 | 0.176649266329257 |
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)
);