File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/24/efd71effcc939aa395173c1f4c3dec/.command.sh
Size
638 bytes
Attempt
#!/bin/bash -Ceuo pipefail
bcftools index custom_Sig_18_tumor_normal.strelka.somatic_indels.vcf.gz

bcftools \
    annotate \
    --output-type z --write-index=tbi -c CHROM,FROM,TO,RPMCat \
    --annotations repeatmasker_grch38.bed.gz \
    --header-lines repeatmasker_header.txt \
    --output custom_Sig_18_tumor_normal.strelka.somatic_indels_RPM.vcf.gz \
    --threads 1 \
    custom_Sig_18_tumor_normal.strelka.somatic_indels.vcf.gz

cat <<-END_VERSIONS > versions.yml
"NFCORE_SAREK:SAREK:VCF_ANNOTATE_ALL:VCF_ANNOTATE_REPEATMASKER:BCFTOOLS_ANNOTATE":
    bcftools: $( bcftools --version |& sed '1!d; s/^.*bcftools //' )
END_VERSIONS