mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
86ac223916
* Added cnvpytor/importreaddepth module * Corrected process name in meta.yml file * added -chrom argument * space correction * Added complementary info * fixed typo * md5sum added * modified the module to work on cram files as well * Added cnvpytor/histogram module and test files * Added cnvpytor/partition module and test files * added cnvpytor/callcnvs module and tests * modified by new modules * Added test file and fixed input path in modules * added when block * little fixes * skip tracking test.yml * removed changes to test if conflicts get resolved * updated outfile name * corrected the version.yml content
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: cnvpytor_histogram
|
|
description: calculates read depth histograms
|
|
keywords:
|
|
- cnv calling
|
|
- histogram
|
|
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' ]
|
|
- pytor:
|
|
type: file
|
|
description: pytor file containing read depth data
|
|
pattern: "*.{pytor}"
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test' ]
|
|
- pytor:
|
|
type: file
|
|
description: pytor file containing read depth histograms binned based on given bin size(s)
|
|
pattern: "*.{pytor}"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
|
|
authors:
|
|
- "@sima-r"
|