consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 3518
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 11650 | 11650 | 3518 3518 | 30271 | 3 | 0.290502742227076 |
| 11651 | 11651 | 3518 3518 | 139534 | 2 | 0.366010519984077 |
| 11652 | 11652 | 3518 3518 | 198907 | 2 | 0.211316272239042 |
| 11653 | 11653 | 3518 3518 | 332863 | 1 | 0.0915026299960192 |
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)
);