consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 255001
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 721485 | 721485 | 255001 255001 | 63799 | 6 | 0.240499417362491 |
| 721486 | 721486 | 255001 255001 | 121188 | 2 | 0.340117537776863 |
| 721487 | 721487 | 255001 255001 | 193180 | 4 | 0.286003618281484 |
| 721488 | 721488 | 255001 255001 | 279619 | 4 | 0.113372512592288 |
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)
);