consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 111384
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 330433 | 330433 | 111384 111384 | 23555 | 3 | 0.384505242118542 |
| 330434 | 330434 | 111384 111384 | 140330 | 4 | 0.292160804281774 |
| 330435 | 330435 | 111384 111384 | 201010 | 2 | 0.192252621059271 |
| 330436 | 330436 | 111384 111384 | 281161 | 1 | 0.0961263105296356 |
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)
);