consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 343002
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 955280 | 955280 | 343002 343002 | 58495 | 1 | 0.187431827715301 |
| 955281 | 955281 | 343002 343002 | 144786 | 2 | 0.374863655430603 |
| 955282 | 955282 | 343002 343002 | 251319 | 1 | 0.124954551810201 |
| 955283 | 955283 | 343002 343002 | 279640 | 2 | 0.132534316387678 |
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)
);