consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 330518
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 928980 | 928980 | 330518 330518 | 3474 | 1 | 0.112 |
| 928981 | 928981 | 330518 330518 | 3924 | 3 | 0.336 |
| 928982 | 928982 | 330518 330518 | 94367 | 1 | 0.336 |
| 928983 | 928983 | 330518 330518 | 245562 | 1 | 0.168 |
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)
);