consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 100805
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 298306 | 298306 | 100805 100805 | 59375 | 1 | 0.0739349841769105 |
| 298307 | 298307 | 100805 100805 | 75926 | 2 | 0.209119714713654 |
| 298308 | 298308 | 100805 100805 | 119546 | 2 | 0.295739936707642 |
| 298309 | 298309 | 100805 100805 | 187745 | 4 | 0.295739936707642 |
| 298310 | 298310 | 100805 100805 | 237726 | 1 | 0.0985799789025474 |
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)
);