consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 170119
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 470083 | 470083 | 170119 170119 | 16034 | 3 | 0.336 |
| 470084 | 470084 | 170119 170119 | 77503 | 1 | 0.168 |
| 470085 | 470085 | 170119 170119 | 106870 | 1 | 0.336 |
| 470086 | 470086 | 170119 170119 | 201088 | 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)
);