consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100628
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297696 | 297696 | 100628 100628 | 75495 | 2 | 0.404641746508092 |
| 297697 | 297697 | 100628 100628 | 101320 | 7 | 0.366493605361456 |
| 297698 | 297698 | 100628 100628 | 138996 | 2 | 0.116810010635904 |
| 297699 | 297699 | 100628 100628 | 196015 | 1 | 0.0809283493016184 |
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)
);