📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-06 16:02:57 +00:00
parent 32b074b266
commit 3b9ece8c79
299 changed files with 1063 additions and 858 deletions
@@ -54,11 +54,12 @@ uv pip install biopython
For NCBI database access, always set your email address (required by NCBI):
```python
import os
from Bio import Entrez
Entrez.email = "your.email@example.com"
# Optional: API key for higher rate limits (10 req/s instead of 3 req/s)
Entrez.api_key = "your_api_key_here"
Entrez.api_key = os.environ.get("NCBI_API_KEY")
```
## Using This Skill