consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100402
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296830 | 296830 | 100402 100402 | 71848 | 1 | 0.1329155381542 |
| 296831 | 296831 | 100402 100402 | 74510 | 5 | 0.302193424690449 |
| 296832 | 296832 | 100402 100402 | 186232 | 4 | 0.398746614462601 |
| 296833 | 296833 | 100402 100402 | 206390 | 1 | 0.1329155381542 |
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)
);