File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/19/e5500e451908e603fb73ccfdb7400e/.command.sh
Size
719 bytes
Attempt
#!/bin/bash -Ceuo pipefail
estimate_tumor_normal_contamination.py \
    -T Sig_18_tissue.pileup.txt \
    -N Sig_18_Blood.pileup.txt \
    -g GRCh38 \
     \
    --outfile Sig_18_tissue_vs_Sig_18_Blood.conpair.contamination.txt \
    --grid 0.01 \
    --min_mapping_quality 10 \


cat <<-END_VERSIONS > versions.yml
"NFCORE_SAREK:SAREK:CRAM_SAMPLE_INTEGRITY:BAM_CONTAMINATION_ANALYSIS:CONPAIR_CONTAMINATION":
    conpair: "$(estimate_tumor_normal_contamination.py --version 2>&1 | sed 's/.*version //' | sed 's/ .*//' || echo '1.0')"
    python: "$(python --version 2>&1 | sed 's/Python //' || echo '3.8.20')"
    numpy: "$(python -c 'import numpy; print(numpy.__version__)' 2>/dev/null || echo '1.24.4')"
END_VERSIONS