This is the root of the METAINFORMANT executable.
- Intent: Provide a comprehensive, modular, production-ready bioinformatics toolkit.
- State: As of Feb 2026, the repo is in a "Stabilized" state with high modularity and production-ready RNA-seq pipeline.
src/: Core business logic.scripts/: Thin orchestration layer.docs/: User-facing documentation.tests/: No-mock verification suite.
- Do not use mocks: Always prefer real implementations.
- Use
uv: Strict dependency management. - Output Isolation: All artifacts go to
output/.
- Refactoring: When modifying
src/, always runscripts/run_all_scripts.pyto verify regressions. - Documentation: Keep
AGENTS.mdandREADME.mdsynchronized with code changes.