consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 90871
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 268094 | 268094 | 90871 90871 | 28964 | 5 | 0.387889876404391 |
| 268095 | 268095 | 90871 90871 | 28993 | 1 | 0.111392115736432 |
| 268096 | 268096 | 90871 90871 | 123606 | 4 | 0.315064481631791 |
| 268097 | 268097 | 90871 90871 | 162721 | 1 | 0.148522820981909 |
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)
);