mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
e937c7950a
* Update README * Rename pytest_software.yml to pytest_modules.yml * Rename main software directory to modules * Remove deprecated modules * Rename tests software to modules * Replace paths for tests in pytest_modules.yml * Replace software with modules in Github Actions * Replace software with modules in main.nf tests * Rename software to modules in test.yml
50 lines
1.6 KiB
YAML
Executable file
50 lines
1.6 KiB
YAML
Executable file
name: sequenzautils_bam2seqz
|
|
description: Sequenza-utils bam2seqz process BAM and Wiggle files to produce a seqz file
|
|
keywords:
|
|
- bam2seqz
|
|
tools:
|
|
- sequenzautils:
|
|
description: Sequenza-utils provides 3 main command line programs to transform common NGS file format - such as FASTA, BAM - to input files for the Sequenza R package. The program - bam2seqz - process a paired set of BAM/pileup files (tumour and matching normal), and GC-content genome-wide information, to extract the common positions with A and B alleles frequencies.
|
|
homepage: https://sequenza-utils.readthedocs.io/en/latest/index.html
|
|
documentation: https://sequenza-utils.readthedocs.io/en/latest/index.html
|
|
doi: 10.1093/annonc/mdu479
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- normalbam:
|
|
type: file
|
|
description: BAM file from the reference/normal sample
|
|
pattern: "*.{bam}"
|
|
- tumourbam:
|
|
type: file
|
|
description: BAM file from the tumour sample
|
|
pattern: "*.{bam}"
|
|
- fasta:
|
|
type: file
|
|
description: Reference FASTA file
|
|
pattern: "*.{fasta}"
|
|
- wigfile:
|
|
type: file
|
|
description: GC content wiggle file
|
|
pattern: "*.{wig.gz}"
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- version:
|
|
type: file
|
|
description: File containing software version
|
|
pattern: "*.{version.txt}"
|
|
- seqz:
|
|
type: file
|
|
description: Seqz file
|
|
pattern: "*.{seqz.gz}"
|
|
|
|
authors:
|
|
- "@kaurravneet4123"
|