consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 102242
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 302076 | 302076 | 102242 102242 | 1764 | 2 | 0.342857142857143 |
| 302077 | 302077 | 102242 102242 | 108525 | 6 | 0.342857142857143 |
| 302078 | 302078 | 102242 102242 | 263735 | 2 | 0.171428571428571 |
| 302079 | 302079 | 102242 102242 | 296745 | 1 | 0.114285714285714 |
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)
);