consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 256400
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 725716 | 725716 | 256400 256400 | 4925 | 2 | 0.134331478618579 |
| 725717 | 725717 | 256400 256400 | 73100 | 3 | 0.301563973285274 |
| 725718 | 725718 | 256400 256400 | 123854 | 6 | 0.281858355420909 |
| 725719 | 725719 | 256400 256400 | 228850 | 1 | 0.126648932610684 |
| 725720 | 725720 | 256400 256400 | 230517 | 1 | 0.0759893595664104 |
| 725721 | 725721 | 256400 256400 | 329581 | 1 | 0.0542781139760074 |
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)
);