consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 320353
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 907482 | 907482 | 320353 320353 | 42864 | 3 | 0.336 |
| 907483 | 907483 | 320353 320353 | 96641 | 1 | 0.336 |
| 907484 | 907484 | 320353 320353 | 250586 | 1 | 0.168 |
| 907485 | 907485 | 320353 320353 | 260265 | 1 | 0.112 |
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)
);