File Info

Filename
.command.sh
Full Path
s3://natera-rnd-pltf-dev-nextflow-scratch-01/work/8a/df1296d8be4e5ce70d41f64d112fd2/.command.sh
Size
900 bytes
Attempt
#!/bin/bash -Ceuo pipefail
predict.py \
    --vcf       COLO829_tumor_20pct_rep2.manta_fusion.somatic_sv.annotated.vcf.gz \
    --model     model.pkl \
    --pon-dir   pon \
    --cosmic    cosmic_fusion.tsv.gz \
    --genes     protein_coding_genes.bed \
    --panel-bed foresight_panel_for_manta.bed \
    --prefix    COLO829_tumor_20pct_rep2.manta_fusion \
    --threshold 0.05 \
    --tumor-id  "COLO829_c_0001_gDNA_0001_B23H2NLLT4_8" \
    --normal-id "COLO829BL_c_01_gDNA_0001_A237FLHLT3_1"

cat <<-END_VERSIONS > versions.yml
"NFCORE_SAREK:SAREK:BAM_VARIANT_CALLING_SOMATIC_ALL:BAM_VARIANT_CALLING_SOMATIC_MANTA_FUSION:MANTA_FUSION_SCORE":
    python: $( python3 --version 2>&1 | sed 's/Python //' )
    lightgbm: $( python3 -c "import lightgbm; print(lightgbm.__version__)" )
    scikit-learn: $( python3 -c "import sklearn; print(sklearn.__version__)" )
    predict_py: "1.3.0"
END_VERSIONS