consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 102010
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 301371 | 301371 | 102010 102010 | 1012 | 1 | 0.069277240506382 |
| 301372 | 301372 | 102010 102010 | 1229 | 3 | 0.240170778805002 |
| 301373 | 301373 | 102010 102010 | 104229 | 5 | 0.34638620253191 |
| 301374 | 301374 | 102010 102010 | 149513 | 1 | 0.0577310337553184 |
| 301375 | 301375 | 102010 102010 | 248259 | 1 | 0.0865965506329775 |
| 301376 | 301376 | 102010 102010 | 260309 | 1 | 0.173193101265955 |
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)
);