consensus_index
Data license: CC-BY-4.0 · Data source: ZeroPM GitHub · About: ZeroPM Website
6 rows where inventory_id = 100363
Download this data as a CSV Spreadsheet (All Rows)
| Link | rowid ▼ | inventory_id | inchi_id | consensus_score | consensus_count |
|---|---|---|---|---|---|
| 296675 | 296675 | 100363 100363 | 74369 | 5 | 0.32348354641212 |
| 296676 | 296676 | 100363 100363 | 141950 | 3 | 0.294927223942496 |
| 296677 | 296677 | 100363 100363 | 144507 | 1 | 0.0619308362720349 |
| 296678 | 296678 | 100363 100363 | 177087 | 1 | 0.12386167254407 |
| 296679 | 296679 | 100363 100363 | 184192 | 1 | 0.0928962544080524 |
| 296680 | 296680 | 100363 100363 | 264589 | 1 | 0.0743170035264419 |
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)
);