consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 422011
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 1283356 | 1283356 | 422011 422011 | 46438 | 6 | 0.323529411764706 |
| 1283357 | 1283357 | 422011 422011 | 97819 | 2 | 0.323529411764706 |
| 1283358 | 1283358 | 422011 422011 | 169365 | 1 | 0.161764705882353 |
| 1283359 | 1283359 | 422011 422011 | 187806 | 1 | 0.161764705882353 |
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)
);