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