consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 8124
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 28024 | 28024 | 8124 8124 | 43275 | 1 | 0.134949739253531 |
| 28025 | 28025 | 8124 8124 | 44552 | 5 | 0.269899478507061 |
| 28026 | 28026 | 8124 8124 | 125488 | 2 | 0.269899478507061 |
| 28027 | 28027 | 8124 8124 | 138035 | 3 | 0.148531407090819 |
| 28028 | 28028 | 8124 8124 | 208611 | 1 | 0.089966492835687 |
| 28029 | 28029 | 8124 8124 | 208612 | 1 | 0.0674748696267653 |
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)
);