consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 40144
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 115071 | 115071 | 40144 40144 | 440 | 2 | 0.388743491987177 |
| 115072 | 115072 | 40144 40144 | 133506 | 7 | 0.352094180021372 |
| 115073 | 115073 | 40144 40144 | 281908 | 1 | 0.129581163995726 |
| 115074 | 115074 | 40144 40144 | 296300 | 1 | 0.0971858729967942 |
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)
);