Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
- Source: `src/snakehelper/` (core logic in `SnakeIOHelper.py`).
Sign in to like and favorite skills
src/snakehelper/ (core logic in SnakeIOHelper.py).tests/ (e.g., tests/test_snakehelper.py; sample Snakefile in tests/make_files/).docs/, examples/.pyproject.toml, .coveragerc, uv.lock.*- Environment: Python 3.11+.
pip install -e . (or uv pip install -e .).uv run pytest -q from repo root.uv run pytest -q --cov=snakehelper (honors .coveragerc; requires pytest-cov).__pycache__/, .pytest_cache/, and .snakemake/ if needed.snake_case, classes CapWords, modules lower_snake_case.pytest.tests/; files named test_*.py; functions test_*.getSnake with tests/make_files/workflow_common.smk targets.snakehelper; prefer unit tests over heavyweight integration.[feature], [doc] as seen in history.pytest locally; keep diffs minimal and focused.SNAKEMAKE_DEBUG_ROOT (or add to .env) to auto‑switch working dir when exploring in notebooks/VS Code..env is for local use only and should not contain production secrets.