consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100182
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296121 | 296121 | 100182 100182 | 53335 | 4 | 0.128109603276845 |
| 296122 | 296122 | 100182 100182 | 73679 | 2 | 0.347280282607859 |
| 296123 | 296123 | 100182 100182 | 123213 | 6 | 0.347280282607859 |
| 296124 | 296124 | 100182 100182 | 186513 | 4 | 0.156901579589327 |
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)
);