consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 123510
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 363474 | 363474 | 123510 123510 | 50608 | 1 | 0.318995070807256 |
| 363475 | 363475 | 123510 123510 | 58624 | 1 | 0.106331690269085 |
| 363476 | 363476 | 123510 123510 | 145563 | 4 | 0.318995070807256 |
| 363477 | 363477 | 123510 123510 | 251697 | 3 | 0.159497535403628 |
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)
);