consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100509
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297162 | 297162 | 100509 100509 | 12997 | 2 | 0.190465870259495 |
| 297163 | 297163 | 100509 100509 | 54309 | 2 | 0.190465870259495 |
| 297164 | 297164 | 100509 100509 | 75026 | 7 | 0.466544195550906 |
| 297165 | 297165 | 100509 100509 | 267032 | 1 | 0.116636048887726 |
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)
);