consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100495
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297121 | 297121 | 100495 100495 | 31857 | 3 | 0.216719235881799 |
| 297122 | 297122 | 100495 100495 | 35682 | 5 | 0.168271392306629 |
| 297123 | 297123 | 100495 100495 | 43082 | 8 | 0.380506189129004 |
| 297124 | 297124 | 100495 100495 | 162479 | 1 | 0.109219650881844 |
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)
);