nf-core_modules/modules/cnvpytor/view/meta.yml

57 lines
1.5 KiB
YAML
Raw Normal View History

2022-05-03 12:26:46 +00:00
name: cnvpytor_view
description: view function to generate vcfs
keywords:
- cnv calling
tools:
- cnvpytor:
description: calling CNVs using read depth
homepage: https://github.com/abyzovlab/CNVpytor
documentation: https://github.com/abyzovlab/CNVpytor
tool_dev_url: https://github.com/abyzovlab/CNVpytor
doi: "10.1101/2021.01.27.428472v1"
licence: ["MIT"]
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test' ]
2022-05-05 22:13:49 +00:00
- pytor_files:
2022-05-03 12:26:46 +00:00
type: file
2022-05-05 22:13:49 +00:00
description: pytor file containing cnv calls. To merge calls from multiple samples use a list of files.
2022-05-03 12:26:46 +00:00
pattern: "*.{pytor}"
- bin_sizes:
type: string
description: list of binsizes separated by space e.g. "1000 10000" and "1000"
2022-05-03 13:04:37 +00:00
- output_format:
type: string
description: output format of the cnv calls. Valid entries are "tsv", "vcf", and "xls"
2022-05-03 12:26:46 +00:00
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test' ]
2022-05-03 12:53:56 +00:00
- tsv:
2022-05-03 12:26:46 +00:00
type: file
2022-05-03 12:53:56 +00:00
description: tsv file containing cnv calls
pattern: "*.{tsv}"
- vcf:
type: file
description: vcf file containing cnv calls
pattern: "*.{vcf}"
- xls:
type: file
description: xls file containing cnv calls
pattern: "*.{xls}"
2022-05-03 12:26:46 +00:00
- versions:
type: file
description: File containing software versions
pattern: "versions.yml"
authors:
- "@sima-r"
2022-05-03 12:53:56 +00:00
- "@ramprasadn"