File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/a0/4bfc1378cf16c3056180dfccd4ff56/.command.sh
Size
602 bytes
Attempt
#!/bin/bash -Ceuo pipefail
mkdir -p raw_vcfs/ vcfs/
cnv_pipe make-probe-merged-vcfs \
    Sig_18_Blood_probe_sample.parquet \
    Homo_sapiens_assembly38.fasta \
    raw_vcfs/ \
    1 \

# cnv_pipe names the VCF after the parquet's internal sample_id. In prod
# that equals germline_control_2 (autorun builds one parquet per normal sample),
# so the rename is effectively a relabel. In CI regression/edge-cases we
# reuse a single fixture parquet across many workorder rows — this rename
# gives each row a unique filename so publishDir doesn't collide.
mv raw_vcfs/*.vcf vcfs/germline_control_2.vcf