consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 100232
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296297 | 296297 | 100232 100232 | 73829 | 3 | 0.1883159222774 |
| 296298 | 296298 | 100232 100232 | 161421 | 1 | 0.0855481850821103 |
| 296299 | 296299 | 100232 100232 | 174804 | 4 | 0.342192740328441 |
| 296300 | 296300 | 100232 100232 | 177074 | 1 | 0.114064246776147 |
| 296301 | 296301 | 100232 100232 | 205480 | 1 | 0.171096370164221 |
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)
);