consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 413789
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 1256118 | 1256118 | 413789 413789 | 15418 | 2 | 0.163259159654812 |
| 1256119 | 1256119 | 413789 413789 | 92847 | 4 | 0.336275852998868 |
| 1256120 | 1256120 | 413789 413789 | 192649 | 3 | 0.233863896019744 |
| 1256121 | 1256121 | 413789 413789 | 192711 | 1 | 0.0999754092474658 |
| 1256122 | 1256122 | 413789 413789 | 271415 | 1 | 0.133300545663288 |
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)
);