nf-core_modules/software/bowtie/build/meta.yml

53 lines
1.7 KiB
YAML
Raw Normal View History

2021-02-01 17:53:31 +00:00
name: bowtie_build
2020-12-08 12:40:32 +00:00
description: Create bowtie index for reference genome
keywords:
- index
- fasta
- genome
- reference
tools:
- bowtie:
2020-12-18 08:50:05 +00:00
description: |
bowtie is a software package for mapping DNA sequences against
a large reference genome, such as the human genome.
homepage: http://bowtie-bio.sourceforge.net/index.shtml
documentation: http://bowtie-bio.sourceforge.net/manual.shtml
arxiv: arXiv:1303.3997
2020-12-08 12:40:32 +00:00
params:
- outdir:
2020-12-18 08:50:05 +00:00
type: string
description: |
The pipeline's output directory. By default, the module will
output files into `$params.outdir/<SOFTWARE>`
2020-12-08 12:40:32 +00:00
- publish_dir_mode:
2020-12-18 08:50:05 +00:00
type: string
description: |
Value for the Nextflow `publishDir` mode parameter.
Available: symlink, rellink, link, copy, copyNoFollow, move.
2020-12-08 12:40:32 +00:00
- enable_conda:
2020-12-18 08:50:05 +00:00
type: boolean
description: |
Run the module with Conda using the software specified
via the `conda` directive
2020-12-17 06:33:44 +00:00
- singularity_pull_docker_container:
2020-12-18 08:50:05 +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.
2020-12-08 12:40:32 +00:00
input:
- fasta:
2020-12-18 08:50:05 +00:00
type: file
description: Input genome fasta file
2020-12-08 12:40:32 +00:00
output:
- index:
2020-12-18 08:50:05 +00:00
type: file
description: Bowtie genome index files
pattern: "*.ebwt"
2020-12-08 12:40:32 +00:00
- version:
2020-12-18 08:50:05 +00:00
type: file
description: File containing software version
pattern: "*.{version.txt}"
2020-12-08 12:40:32 +00:00
authors:
- "@kevinmenden"
2021-02-01 17:53:31 +00:00
- "@drpatelh"