consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 50192
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 140849 | 140849 | 50192 50192 | 40853 | 3 | 0.243243243243243 |
| 140850 | 140850 | 50192 50192 | 46481 | 3 | 0.243243243243243 |
| 140851 | 140851 | 50192 50192 | 92953 | 1 | 0.243243243243243 |
| 140852 | 140852 | 50192 50192 | 115600 | 1 | 0.243243243243243 |
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)
);