File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,12 +18,8 @@ params.skip_decompose_complex = false
1818params. filter = false
1919params. cpus = 1
2020params. memory = " 4g"
21- params. vcf_without_ad = false
22- params. mapping_quality = 0
23- params. base_call_quality = 0
2421params. skip_multiallelic_filter = false
2522params. snpeff_organism = false
26- params. snpeff_args = " "
2723params. snpeff_datadir = false
2824
2925
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ params.memory = "4g"
33params. output = " "
44params. mapping_quality = 0
55params. base_call_quality = 0
6- params. skip_multiallelic_filter = false
76params. enable_conda = false
87
98
@@ -27,9 +26,9 @@ process VAFATOR {
2726 vafator \
2827 --input-vcf ${ vcf} \
2928 --output-vcf ${ vcf.baseName} .vaf.vcf \
30- ${ bams_param} \
3129 --mapping-quality ${ params.mapping_quality} \
32- --base-call-quality ${ params.base_call_quality}
30+ --base-call-quality ${ params.base_call_quality} \
31+ ${ bams_param}
3332 """
3433}
3534
Original file line number Diff line number Diff line change 2727// Capture exit codes from upstream processes when piping
2828process. shell = [' /bin/bash' , ' -euo' , ' pipefail' ]
2929
30- VERSION = ' 2.1.3'
31-
32- cleanup= true
30+ VERSION = ' 2.1.4'
3331
3432manifest {
3533 name = ' TRON-Bioinformatics/tronflow-vcf-postprocessing'
You can’t perform that action at this time.
0 commit comments