consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 55999
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 155732 | 155732 | 55999 55999 | 54391 | 15 | 0.419117647058824 |
| 155733 | 155733 | 55999 55999 | 63044 | 1 | 0.209558823529412 |
| 155734 | 155734 | 55999 55999 | 144397 | 1 | 0.209558823529412 |
| 155735 | 155735 | 55999 55999 | 201642 | 1 | 0.139705882352941 |
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)
);