consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 100620
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 297645 | 297645 | 100620 100620 | 75047 | 1 | 0.235925843693236 |
| 297646 | 297646 | 100620 100620 | 75390 | 4 | 0.471851687386471 |
| 297647 | 297647 | 100620 100620 | 147772 | 2 | 0.121831581808511 |
| 297648 | 297648 | 100620 100620 | 157373 | 1 | 0.117962921846618 |
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)
);