nf-core_modules/software/bcftools/consensus/meta.yml

70 lines
2.1 KiB
YAML
Raw Normal View History

2021-01-31 21:23:26 +00:00
name: bcftools_consensus
description: Compresses VCF files
keywords:
- variant calling
- consensus
- VCF
tools:
- consensus:
2021-02-01 08:28:51 +00:00
description: |
Create consensus sequence by applying VCF variants to a reference fasta file.
homepage: http://samtools.github.io/bcftools/bcftools.html
documentation: http://www.htslib.org/doc/bcftools.html
doi: 10.1093/bioinformatics/btp352
2021-01-31 21:23:26 +00:00
params:
- outdir:
2021-02-01 08:28:51 +00:00
type: string
description: |
The pipeline's output directory. By default, the module will
output files into `$params.outdir/<SOFTWARE>`
2021-01-31 21:23:26 +00:00
- publish_dir_mode:
2021-02-01 08:28:51 +00:00
type: string
description: |
Value for the Nextflow `publishDir` mode parameter.
Available: symlink, rellink, link, copy, copyNoFollow, move.
2021-01-31 21:23:26 +00:00
- enable_conda:
2021-02-01 08:28:51 +00:00
type: boolean
description: |
Run the module with Conda using the software specified
via the `conda` directive
2021-01-31 21:23:26 +00:00
- singularity_pull_docker_container:
2021-02-01 08:28:51 +00:00
type: boolean
description: |
Instead of directly downloading Singularity images for use with Singularity,
force the workflow to pull and convert Docker containers instead.
2021-01-31 21:23:26 +00:00
input:
- meta:
2021-02-01 08:28:51 +00:00
type: map
description: |
2021-02-02 08:57:55 +00:00
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2021-01-31 21:23:26 +00:00
- vcf:
2021-02-01 08:28:51 +00:00
type: file
description: VCF file
pattern: "*.{vcf}"
2021-01-31 21:23:26 +00:00
- tbi:
2021-02-01 08:28:51 +00:00
type: file
description: tabix index file
pattern: "*.{tbi}"
2021-02-02 08:57:55 +00:00
- fasta:
2021-01-31 21:23:26 +00:00
type: file
description: FASTA reference file
pattern: "*.{fasta,fa}"
output:
2021-02-01 08:28:51 +00:00
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2021-01-31 21:23:26 +00:00
- fasta:
type: file
description: FASTA reference consensus file
pattern: "*.{fasta,fa}"
- version:
2021-02-01 08:28:51 +00:00
type: file
description: File containing software version
pattern: "*.{version.txt}"
2021-01-31 21:23:26 +00:00
authors:
- "@joseespinosa"
- "@drpatelh"