consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 273323
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 781697 | 781697 | 273323 273323 | 24827 | 1 | 0.0852613218472508 |
| 781698 | 781698 | 273323 273323 | 26066 | 2 | 0.196902588479894 |
| 781699 | 781699 | 273323 273323 | 129092 | 1 | 0.341045287389003 |
| 781700 | 781700 | 273323 273323 | 144826 | 3 | 0.27068782398505 |
| 781701 | 781701 | 273323 273323 | 297078 | 1 | 0.0682090574778007 |
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)
);