uclahs-cds / pipeline-call-NonCanonicalPeptide

Nextflow pipeline to call non-canonical peptides as custom databases for proteogenomic analysis
https://automatic-adventure-o4l96o9.pages.github.io/
GNU General Public License v2.0
0 stars 1 forks source link

Fix `generate_args` #114

Closed zhuchcn closed 5 months ago

zhuchcn commented 5 months ago

Description

Sometimes arriba config parameters are not parsed to parseArriba in the correct order. Below is an example command, and for some reason the value for --min-confidence became 1, but it should be 'medium'.

moPepGen parseArriba \
    --input-path fusions.tsv \
    --index-dir index \
    --output-path ACH-000042_Fusion_Arriba.gvf \
    --source Fusion \
    --min-split-read2 1 \
    --min-confidence 1 \
    --min-split-read1 1

Closes #...

Checklist