consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 491991
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 1628524 | 1628524 | 491991 491991 | 20541 | 1 | 0.100271779945238 |
| 1628525 | 1628525 | 491991 491991 | 57986 | 1 | 0.150407669917857 |
| 1628526 | 1628526 | 491991 491991 | 59330 | 10 | 0.502938462271463 |
| 1628527 | 1628527 | 491991 491991 | 138447 | 1 | 0.0859472399530612 |
| 1628528 | 1628528 | 491991 491991 | 140826 | 1 | 0.120326135934286 |
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)
);