consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 111532
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 330924 | 330924 | 111532 111532 | 23882 | 11 | 0.542276968167006 |
| 330925 | 330925 | 111532 111532 | 27370 | 3 | 0.198405062196788 |
| 330926 | 330926 | 111532 111532 | 225126 | 1 | 0.218373027062069 |
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)
);