Skip to content

Commit de4607d

Browse files
committed
DOC: remove redundant readme items
1 parent a65718f commit de4607d

1 file changed

Lines changed: 0 additions & 27 deletions

File tree

README.md

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -103,31 +103,6 @@
103103

104104
Adminer: http://localhost:8080 (server: db, user: bionexus, db: bionexus)
105105

106-
## Compound search
107-
108-
Make sure to have installed the `chem` extras:
109-
110-
```bash
111-
poetry install --extras chem
112-
```
113-
114-
Exact search:
115-
116-
```bash
117-
bionexus search-jaccard --smiles "CCO" --top-k 5
118-
```
119-
120-
Exact search returns `top-k` results with lowest Jaccard distance (highest similarity). Hybrid search speeds up the process by using the `pgvector` extensions and the `<#>` operator (inner-product distance) to quickly find the 2000 nearest neighbors and then re-ranks these using the exact Jaccard distance.
121-
122-
Hybrid search:
123-
```bash
124-
bionexus search-jaccard --smiles "CCO" --top-k 5 --hybrid
125-
```
126-
127-
<!-- ## Retrobiosynthetic search
128-
129-
Not yet implemented -->
130-
131106
## Database schema & migrations
132107

133108
The BioNexus database schema is defined in `bionexus/db/models.py` using SQLAlchemy ORM classes.
@@ -172,8 +147,6 @@ Schema changes (new tables, columns, constraints, etc.) are tracked with **Alemb
172147
bionexus downgrade -1
173148
```
174149

175-
---
176-
177150
### Tips
178151

179152
- Ensure **all** models are imported by `bionexus/db/models.py` (or submodules imported there) so Alembic can detect them.

0 commit comments

Comments
 (0)