consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 30547
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 84900 | 84900 | 30547 30547 | 32586 | 3 | 0.222787680440953 |
| 84901 | 84901 | 30547 30547 | 114973 | 1 | 0.380961574769924 |
| 84902 | 84902 | 30547 30547 | 212863 | 8 | 0.215326394838885 |
| 84903 | 84903 | 30547 30547 | 215633 | 2 | 0.155526911632243 |
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)
);