consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 12900
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 42416 | 42416 | 12900 12900 | 55100 | 3 | 0.24664841430089 |
| 42417 | 42417 | 12900 12900 | 115588 | 2 | 0.310757529100883 |
| 42418 | 42418 | 12900 12900 | 229446 | 4 | 0.310757529100883 |
| 42419 | 42419 | 12900 12900 | 229721 | 1 | 0.103585843033628 |
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)
);