-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenvironment.yml
More file actions
88 lines (74 loc) · 1.94 KB
/
Copy pathenvironment.yml
File metadata and controls
88 lines (74 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# BioDesignBench - Complete Environment (Python 3.11)
# Install: conda env create -f environment.yml
# Update: conda env update -f environment.yml --prune
# Activate: conda activate biodesignbench
name: biodesignbench
channels:
- conda-forge
- bioconda
- pytorch
- defaults
dependencies:
# Core Python
- python=3.11
- pip
# Data Science
- numpy>=1.24
- pandas>=2.0
- scipy>=1.10
- scikit-learn>=1.3
# Bio Libraries (conda)
- biopython>=1.81
# PyTorch (CPU - change to pytorch-cuda=11.8 for GPU)
- pytorch>=2.0
- torchvision
# Testing & Quality
- pytest>=9.0
- pytest-cov>=4.0
- pytest-asyncio>=0.21
- black>=23.0
- isort>=5.12
- mypy>=1.0
- ruff>=0.1
# Utilities
- pyyaml>=6.0
- requests>=2.28
- tqdm>=4.65
- rich>=13.0
- click>=8.1
# Jupyter (for analysis)
- jupyterlab>=4.0
- matplotlib>=3.7
- seaborn>=0.12
# Pip-only packages
- pip:
# === Project Core ===
- pydantic>=2.0
- jsonschema>=4.17
- python-dotenv>=1.0
- docker>=7.0
- aiohttp>=3.8
- aiofiles>=23.0
# === Bio Tools ===
- biotite>=0.37
- prody>=2.4
- tmtools>=0.1
# === LLM API Clients (for general-purpose agents) ===
- anthropic>=0.75
- openai>=1.12
- google-generativeai>=0.8
# === Bio-Specific Agent Packages ===
# Biomni - Stanford's bio-specific agent (requires Python 3.11+)
- biomni @ git+https://github.com/snap-stanford/Biomni.git@main
# AIDE (BioML) - ML-focused tree-search agent
# NOTE: aideml>=0.2 pins pytest<8. We override with pytest>=9 via conda above.
- aideml>=0.2
# NOTE: open-interpreter pins anthropic<0.38, conflicting with >=0.75.
# Install separately if needed: pip install open-interpreter --no-deps
# === LangChain (required by biomni) ===
- langchain-openai
- langchain-anthropic
- langchain-google-genai
- langchain-community
# === Install BioDesignBench itself (editable) ===
- -e .