Skip to content

Commit d0975d3

Browse files
committed
Initial commit
0 parents  commit d0975d3

2 files changed

Lines changed: 45 additions & 0 deletions

File tree

.gitignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.egg-info/
6+
*.egg
7+
build/
8+
dist/
9+
.pytest_cache/
10+
.ruff_cache/
11+
.coverage
12+
htmlcov/
13+
14+
# Virtual envs
15+
.venv/
16+
venv/
17+
env/
18+
19+
# Editor / OS
20+
.vscode/
21+
.idea/
22+
.DS_Store
23+
Thumbs.db
24+
25+
# Tooling caches
26+
.claude/
27+
28+
# Local data
29+
*.pkl
30+
*.cache

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# raven-python
2+
3+
The Python counterpart of the
4+
[RAVEN Toolbox 2](https://github.com/SysBioChalmers/RAVEN) (MATLAB), built on
5+
[cobrapy](https://github.com/opencobra/cobrapy).
6+
7+
`raven-python` covers de-novo reconstruction (KEGG + protein homology),
8+
context-specific model extraction (`tINIT` / `ftINIT`), metabolic-task
9+
validation, gap-filling, omics ingestion, sub-cellular localisation, model
10+
manipulation, and YAML / SIF / Excel I/O — preserving the established RAVEN
11+
workflows in a Python-native form.
12+
13+
This `main` branch is intentionally empty. Development happens on the
14+
`develop` branch via a series of feature branches; see the open and merged
15+
pull requests for the current state of the port.

0 commit comments

Comments
 (0)