consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 502053
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 1656849 | 1656849 | 502053 502053 | 5683 | 5 | 0.287936381860316 |
| 1656850 | 1656850 | 502053 502053 | 99966 | 1 | 0.179345629762172 |
| 1656851 | 1656851 | 502053 502053 | 147776 | 4 | 0.358691259524343 |
| 1656852 | 1656852 | 502053 502053 | 232996 | 2 | 0.146435093505143 |
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)
);