#!/bin/bash -Ceuo pipefail
annotate_indel_entropy.py \
--mpileup germline_control_1.mpileup.gz \
--input-vcf germline_control_1.haplotyper.split.vcf.gz \
--output-vcf germline_control_1.entropy.vcf
bgzip germline_control_1.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