consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 10
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 41 | 41 | 10 10 | 16367 | 11 | 0.38961038961039 |
| 42 | 42 | 10 10 | 182462 | 1 | 0.194805194805195 |
| 43 | 43 | 10 10 | 197987 | 1 | 0.194805194805195 |
| 44 | 44 | 10 10 | 282478 | 1 | 0.194805194805195 |
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)
);