consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 45512
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 127299 | 127299 | 45512 45512 | 21758 | 1 | 0.237623762376238 |
| 127300 | 127300 | 45512 45512 | 135288 | 1 | 0.237623762376238 |
| 127301 | 127301 | 45512 45512 | 235470 | 1 | 0.0792079207920792 |
| 127302 | 127302 | 45512 45512 | 263722 | 1 | 0.0594059405940594 |
| 127303 | 127303 | 45512 45512 | 316575 | 2 | 0.237623762376238 |
| 127304 | 127304 | 45512 45512 | 335110 | 1 | 0.118811881188119 |
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)
);