consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
3 rows where inventory_id = 22321
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 67363 | 67363 | 22321 22321 | 65626 | 3 | 0.331857387698775 |
| 67364 | 67364 | 22321 22321 | 129820 | 9 | 0.398643499842456 |
| 67365 | 67365 | 22321 22321 | 263968 | 2 | 0.231667902412645 |
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)
);