fix minor errors

This commit is contained in:
Ramprasad Neethiraj 2022-05-03 15:04:37 +02:00
parent be085c0173
commit 26311aba2a
3 changed files with 5 additions and 1 deletions

View file

@ -19,7 +19,7 @@ process CNVPYTOR_CALLCNVS {
task.ext.when == null || task.ext.when task.ext.when == null || task.ext.when
script: script:
def args = task.ext.args ?: '1000' def bins = bin_sizes ?: '1000'
def prefix = task.ext.prefix ?: "${meta.id}" def prefix = task.ext.prefix ?: "${meta.id}"
""" """
cnvpytor \\ cnvpytor \\

View file

@ -24,6 +24,9 @@ input:
- bin_sizes: - bin_sizes:
type: string type: string
description: list of binsizes separated by space e.g. "1000 10000" and "1000" description: list of binsizes separated by space e.g. "1000 10000" and "1000"
- output_format:
type: string
description: output format of the cnv calls. Valid entries are "tsv", "vcf", and "xls"
output: output:
- meta: - meta:

View file

@ -5,6 +5,7 @@
- cnvpytor/view - cnvpytor/view
files: files:
- path: output/cnvpytor/test_10000.vcf - path: output/cnvpytor/test_10000.vcf
- path: output/cnvpytor/test_100000.vcf
- path: output/cnvpytor/versions.yml - path: output/cnvpytor/versions.yml
- name: cnvpytor view test_cnvpytor_view tsv - name: cnvpytor view test_cnvpytor_view tsv