consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
5 rows where inventory_id = 201103
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 502683 | 502683 | 201103 201103 | 44866 | 1 | 0.112188495705214 |
| 502684 | 502684 | 201103 201103 | 168968 | 2 | 0.237987738252824 |
| 502685 | 502685 | 201103 201103 | 170091 | 1 | 0.0841413717789106 |
| 502686 | 502686 | 201103 201103 | 240095 | 1 | 0.0673130974231285 |
| 502687 | 502687 | 201103 201103 | 259964 | 1 | 0.336565487115643 |
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)
);