consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100284
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296447 | 296447 | 100284 100284 | 71074 | 1 | 0.105768020085599 |
| 296448 | 296448 | 100284 100284 | 73968 | 2 | 0.224367852705606 |
| 296449 | 296449 | 100284 100284 | 122901 | 1 | 0.317304060256797 |
| 296450 | 296450 | 100284 100284 | 229686 | 4 | 0.317304060256797 |
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)
);