consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 100279
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296435 | 296435 | 100279 100279 | 332 | 3 | 0.259294672863162 |
| 296436 | 296436 | 100279 100279 | 36303 | 1 | 0.0785282816118876 |
| 296437 | 296437 | 100279 100279 | 103704 | 7 | 0.307125528328342 |
| 296438 | 296438 | 100279 100279 | 130689 | 2 | 0.166583641328078 |
| 296439 | 296439 | 100279 100279 | 252085 | 1 | 0.157056563223775 |
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)
);