consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 100074
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 295665 | 295665 | 100074 100074 | 62434 | 3 | 0.194215412974017 |
| 295666 | 295666 | 100074 100074 | 65072 | 1 | 0.0577120483877996 |
| 295667 | 295667 | 100074 100074 | 70054 | 1 | 0.100996084678649 |
| 295668 | 295668 | 100074 100074 | 93966 | 5 | 0.403984338714597 |
| 295669 | 295669 | 100074 100074 | 204084 | 3 | 0.148829102878198 |
| 295670 | 295670 | 100074 100074 | 309072 | 1 | 0.0673307231190995 |
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)
);