consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 256964
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 727883 | 727883 | 256964 256964 | 13550 | 3 | 0.292398412957629 |
| 727884 | 727884 | 256964 256964 | 96847 | 1 | 0.0736797830882342 |
| 727885 | 727885 | 256964 256964 | 106492 | 8 | 0.368398915441171 |
| 727886 | 727886 | 256964 256964 | 121706 | 1 | 0.0920997288602928 |
| 727887 | 727887 | 256964 256964 | 224718 | 2 | 0.150398227437599 |
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)
);