File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/22/b589d505320e7f1bd0232ad181f9cc/.command.sh
Size
372 bytes
Attempt
#!/bin/bash -Ceuo pipefail
python3 << 'EOF'
import glob

reports = sorted(glob.glob("*.txt"))
with open("summary.txt", "w") as f:
    f.write("=== AAVA Aggregation Summary ===\n")
    f.write(f"Groups: {len(reports)}\n\n")
    for r in reports:
        with open(r) as fh:
            f.write(f"--- {r} ---\n")
            f.write(fh.read())
            f.write("\n")
EOF