consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100528
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297259 | 297259 | 100528 100528 | 75052 | 10 | 0.48117300362854 |
| 297260 | 297260 | 100528 100528 | 200183 | 1 | 0.184240879245695 |
| 297261 | 297261 | 100528 100528 | 224715 | 2 | 0.159557281842353 |
| 297262 | 297262 | 100528 100528 | 277652 | 1 | 0.138180659434272 |
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)
);