consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 5917
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 20144 | 20144 | 5917 5917 | 90734 | 5 | 0.422800152278559 |
| 20145 | 20145 | 5917 5917 | 137730 | 2 | 0.280401612523461 |
| 20146 | 20146 | 5917 5917 | 195942 | 1 | 0.242834919707438 |
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)
);