consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 65714
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 183940 | 183940 | 65714 65714 | 5678 | 1 | 0.293702003689444 |
| 183941 | 183941 | 65714 65714 | 111118 | 3 | 0.293702003689444 |
| 183942 | 183942 | 65714 65714 | 117746 | 3 | 0.233111434810896 |
| 183943 | 183943 | 65714 65714 | 201299 | 1 | 0.146851001844722 |
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)
);