consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 320140
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 907008 | 907008 | 320140 320140 | 18675 | 1 | 0.112 |
| 907009 | 907009 | 320140 320140 | 19319 | 3 | 0.336 |
| 907010 | 907010 | 320140 320140 | 111378 | 1 | 0.336 |
| 907011 | 907011 | 320140 320140 | 280013 | 1 | 0.168 |
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)
);