consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 68999
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 194396 | 194396 | 68999 68999 | 3460 | 12 | 0.336448598130841 |
| 194397 | 194397 | 68999 68999 | 23353 | 1 | 0.11214953271028 |
| 194398 | 194398 | 68999 68999 | 49695 | 1 | 0.168224299065421 |
| 194399 | 194399 | 68999 68999 | 127994 | 1 | 0.0841121495327103 |
| 194400 | 194400 | 68999 68999 | 149372 | 1 | 0.11214953271028 |
| 194401 | 194401 | 68999 68999 | 183979 | 1 | 0.168224299065421 |
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)
);