consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 111528
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 330897 | 330897 | 111528 111528 | 23683 | 4 | 0.160534197037623 |
| 330898 | 330898 | 111528 111528 | 194230 | 3 | 0.123182767402231 |
| 330899 | 330899 | 111528 111528 | 204404 | 2 | 0.158904197137864 |
| 330900 | 330900 | 111528 111528 | 211351 | 2 | 0.0725295110455467 |
| 330901 | 330901 | 111528 111528 | 211393 | 3 | 0.195540454558656 |
| 330902 | 330902 | 111528 111528 | 283658 | 3 | 0.207792739658619 |
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)
);