File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/65/75b9b80bb8cbc3611fc6769e86a67f/.command.sh
Size
770 bytes
Attempt
#!/bin/bash -Ceuo pipefail
gt_correction.py \
    --input-vcf Sig_18_Blood.haplotyper_rf.rf_filtered.vcf.gz \
    --output-vcf Sig_18_Blood.haplotyper_rf.gt_corrected.vcf.gz \
    --gt-model gt_correction_model_v2.joblib \
    --repeatmasker-bed rf_repeatmasker.bed.gz \
    --threshold 0.5 \


tabix -p vcf Sig_18_Blood.haplotyper_rf.gt_corrected.vcf.gz

cat <<-END_VERSIONS > versions.yml
"NFCORE_SAREK:SAREK:BAM_VARIANT_CALLING_GERMLINE_ALL:BAM_VARIANT_CALLING_SENTIEON_HAPLOTYPER_RF:GT_CORRECTION":
    python: $(python --version | sed 's/Python //g')
    cyvcf2: $(python -c "import cyvcf2; print(cyvcf2.__version__)")
    lightgbm: $(python -c "import lightgbm; print(lightgbm.__version__)")
    bedtools: $(bedtools --version | sed 's/bedtools v//')
END_VERSIONS