consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 101636
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 300123 | 300123 | 101636 101636 | 320 | 10 | 0.504575593936323 |
| 300124 | 300124 | 101636 101636 | 3679 | 1 | 0.144901288681577 |
| 300125 | 300125 | 101636 101636 | 92350 | 1 | 0.115921030945261 |
| 300126 | 300126 | 101636 101636 | 228533 | 1 | 0.193201718242102 |
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)
);