consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 68318
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 192253 | 192253 | 68318 68318 | 33443 | 5 | 0.365302477875971 |
| 192254 | 192254 | 68318 68318 | 35731 | 3 | 0.182651238937986 |
| 192255 | 192255 | 68318 68318 | 165892 | 1 | 0.0913256194689928 |
| 192256 | 192256 | 68318 68318 | 168789 | 2 | 0.121767492625324 |
| 192257 | 192257 | 68318 68318 | 291278 | 1 | 0.0730604955751943 |
| 192258 | 192258 | 68318 68318 | 308466 | 2 | 0.0745670560475392 |
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)
);