nf-core_modules/software/bwa/index/meta.yml

53 lines
1.5 KiB
YAML
Raw Normal View History

2020-08-07 11:38:01 +00:00
name: bwa_index
description: Create BWA index for reference genome
keywords:
2020-08-07 14:05:25 +00:00
- index
- fasta
- genome
- reference
tools:
2020-08-07 14:05:25 +00:00
- bwa:
description: |
BWA is a software package for mapping DNA sequences against
a large reference genome, such as the human genome.
homepage: http://bio-bwa.sourceforge.net/
documentation: http://www.htslib.org/doc/samtools.html
arxiv: arXiv:1303.3997
2020-08-07 11:38:01 +00:00
params:
2020-08-07 14:05:25 +00:00
- outdir:
type: string
description: |
The pipeline's output directory. By default, the module will
output files into `$params.outdir/<SOFTWARE>`
- publish_dir_mode:
type: string
description: |
Value for the Nextflow `publishDir` mode parameter.
Available: symlink, rellink, link, copy, copyNoFollow, move.
- conda:
type: boolean
description: |
Run the module with Conda using the software specified
via the `conda` directive
input:
2020-08-07 14:05:25 +00:00
- fasta:
type: file
description: Input genome fasta file
- options:
type: map
description: |
Groovy Map containing module options for passing command-line arguments and
output file paths.
output:
2020-08-07 14:05:25 +00:00
- index:
type: file
description: BWA genome index files
pattern: "*.{amb,ann,bwt,pac,sa}"
- version:
type: file
description: File containing software version
pattern: "*.{version.txt}"
authors:
2020-08-07 14:05:25 +00:00
- "@drpatelh"
- "@maxulysse"