consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 100511
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297169 | 297169 | 100511 100511 | 22719 | 4 | 0.248839733460343 |
| 297170 | 297170 | 100511 100511 | 108121 | 6 | 0.351912525916924 |
| 297171 | 297171 | 100511 100511 | 111349 | 2 | 0.101588395784669 |
| 297172 | 297172 | 100511 100511 | 160643 | 1 | 0.117304175305641 |
| 297173 | 297173 | 100511 100511 | 284409 | 1 | 0.0703825051833847 |
| 297174 | 297174 | 100511 100511 | 322726 | 1 | 0.0879781314792309 |
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)
);