consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 100045
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 295539 | 295539 | 100045 100045 | 51395 | 1 | 0.302088531084383 |
| 295540 | 295540 | 100045 100045 | 73401 | 5 | 0.169464890915204 |
| 295541 | 295541 | 100045 100045 | 161057 | 1 | 0.0755221327710958 |
| 295542 | 295542 | 100045 100045 | 187359 | 4 | 0.193017383808252 |
| 295543 | 295543 | 100045 100045 | 192902 | 3 | 0.239767826015439 |
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)
);