consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
4 rows where inventory_id = 111028
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 329395 | 329395 | 111028 111028 | 22683 | 4 | 0.332881976593533 |
| 329396 | 329396 | 111028 111028 | 33975 | 1 | 0.110960658864511 |
| 329397 | 329397 | 111028 111028 | 139342 | 3 | 0.264208599912914 |
| 329398 | 329398 | 111028 111028 | 192378 | 3 | 0.264208599912914 |
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)
);