consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 102263
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 302143 | 302143 | 102263 102263 | 1807 | 4 | 0.276012109857521 |
| 302144 | 302144 | 102263 102263 | 102315 | 1 | 0.130113356379906 |
| 302145 | 302145 | 102263 102263 | 135178 | 6 | 0.390340069139719 |
| 302146 | 302146 | 102263 102263 | 241634 | 1 | 0.0780680138279438 |
| 302147 | 302147 | 102263 102263 | 281172 | 1 | 0.0975850172849298 |
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)
);