File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/3c/37272197d685e05b879fd06664db6c/.command.sh
Size
691 bytes
Attempt
#!/bin/bash -Ceuo pipefail
annotate_indel_entropy.py \
    --mpileup germline_control_2.mpileup.gz \
    --input-vcf germline_control_2.haplotyper.split.vcf.gz \
    --output-vcf germline_control_2.entropy.vcf

bgzip germline_control_2.entropy.vcf

cat <<-END_VERSIONS > versions.yml
"DAQ:CONTROL_VARIANT_CALLING:CONTROL_GERMLINE_VC:BAM_VARIANT_CALLING_SENTIEON_HAPLOTYPER_RF:VCF_ANNOTATE_INDEL_ENTROPY:INDEL_ENTROPY_ANNOTATION":
    python: $(python --version | sed 's/Python //g')
    numpy: $(python -c "import numpy; print(numpy.__version__)")
    scipy: $(python -c "import scipy; print(scipy.__version__)")
    pysam: $(python -c "import pysam; print(pysam.__version__)")
END_VERSIONS