Skip to content

Commit

Permalink
separated variants input and add quotes to ensure emptylist works pro…
Browse files Browse the repository at this point in the history
…perly
  • Loading branch information
riasc committed Mar 10, 2024
1 parent bbff68e commit 4a01312
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions workflow/rules/prioritization.smk
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ rule prioritization:
shell:
"""
python workflow/scripts/prioritization/compile.py \
--SNV {input.snv} \
--indels {input.indels} \
--long_indels {input.long_indels} \
--exitrons {input.exitrons} \
--altsplicing {input.altsplicing} \
--fusions {input.fusions} \
--custom {input.custom} \
--SNV "{input.snv}" \
--indels "{input.indels}" \
--long_indels "{input.long_indels}" \
--exitrons "{input.exitrons}" \
--altsplicing "{input.altsplicing}" \
--fusions "{input.fusions}" \
--custom "{input.custom}" \
--proteome {input.peptide} \
--anno {input.annotation} \
--confidence medium \
Expand Down

0 comments on commit 4a01312

Please sign in to comment.