consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 866
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 3046 | 3046 | 866 866 | 9625 | 5 | 0.211153481068314 |
| 3047 | 3047 | 866 866 | 101851 | 1 | 0.0696546721642187 |
| 3048 | 3048 | 866 866 | 124729 | 13 | 0.264152113790249 |
| 3049 | 3049 | 866 866 | 139226 | 1 | 0.278618688656875 |
| 3050 | 3050 | 866 866 | 170728 | 1 | 0.0928728962189583 |
| 3051 | 3051 | 866 866 | 280117 | 2 | 0.071939036074015 |
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)
);