consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 210201
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 529448 | 529448 | 210201 210201 | 40573 | 12 | 0.40271214587634 |
| 529449 | 529449 | 210201 210201 | 55646 | 1 | 0.0805424291752681 |
| 529450 | 529450 | 210201 210201 | 183041 | 1 | 0.100678036469085 |
| 529451 | 529451 | 210201 210201 | 233679 | 2 | 0.16440654510305 |
| 529452 | 529452 | 210201 210201 | 261947 | 2 | 0.16440654510305 |
| 529453 | 529453 | 210201 210201 | 307808 | 1 | 0.06711869097939 |
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)
);