#!/usr/bin/env python3
"""Compatibility wrapper for the JARVIS health pipeline.

Generates `reports/aktuelle_blutwerte.xlsx` in the user-requested format:
- one column per lab investigation/date
- one row per blood/urine parameter
- categories and reference ranges copied from the user-maintained reference XLSX

The implementation lives in `health_pipeline.py` so dashboard, correction and report
workflows use one consistent source of truth.
"""
from pathlib import Path
import sys

SCRIPT_DIR = Path(__file__).resolve().parent
sys.path.insert(0, str(SCRIPT_DIR))

from health_pipeline import generate_lab_report  # noqa: E402


if __name__ == "__main__":
    print(generate_lab_report())
