consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 266183
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 758097 | 758097 | 266183 266183 | 92900 | 4 | 0.319436535495315 |
| 758098 | 758098 | 266183 266183 | 129310 | 1 | 0.0633127001338079 |
| 758099 | 758099 | 266183 266183 | 138346 | 2 | 0.268613037599076 |
| 758100 | 758100 | 266183 266183 | 140200 | 1 | 0.0759752401605695 |
| 758101 | 758101 | 266183 266183 | 230944 | 3 | 0.115046811200949 |
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)
);