consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 68255
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 192113 | 192113 | 68255 68255 | 49229 | 2 | 0.405226068740141 |
| 192114 | 192114 | 68255 68255 | 106248 | 7 | 0.313713286146504 |
| 192115 | 192115 | 68255 68255 | 140603 | 1 | 0.101306517185035 |
| 192116 | 192116 | 68255 68255 | 227174 | 1 | 0.0810452137480282 |
| 192117 | 192117 | 68255 68255 | 256953 | 1 | 0.0675376781233569 |
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)
);