consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 201509
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 503554 | 503554 | 201509 201509 | 6843 | 8 | 0.429562869784401 |
| 503555 | 503555 | 201509 201509 | 140594 | 1 | 0.170279740362866 |
| 503556 | 503556 | 201509 201509 | 271000 | 1 | 0.255419610544298 |
| 503557 | 503557 | 201509 201509 | 294773 | 1 | 0.102167844217719 |
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)
);