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

43 lines
1.2 KiB
YAML
Raw Normal View History

2020-03-05 16:06:25 +00:00
name: bwa mem
description: Performs fastq alignment to a fasta reference using the burrows-wheeler aligner
keywords:
- mem
- bwa
- alignment
tools:
- 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
input:
-
- id:
type: val
2020-03-05 16:31:46 +00:00
description: read/read pair id
2020-03-05 16:06:25 +00:00
- reads:
type: file
description: Input fastq file
2020-07-11 11:54:12 +00:00
pattern: "*.{fastq,fq}"
2020-03-05 16:06:25 +00:00
- index:
type: file
description: bwa indexes file
2020-07-11 11:54:12 +00:00
pattern: "*.{amb,ann,bwt,pac,sa}"
2020-03-05 16:31:46 +00:00
- prefix:
type: val
description: bwa index prefix, equivalent to index file names without extensions. Usually the reference genome file name unless otherwise specified.
2020-03-05 16:06:25 +00:00
output:
-
- bam:
type: file
description: Output bam file
2020-07-11 11:54:12 +00:00
pattern: "*.bam"
2020-03-05 16:06:25 +00:00
- bamindex:
type: file
description: Output bam index file
2020-07-11 11:54:12 +00:00
pattern: "*.bai"
2020-03-05 16:06:25 +00:00
authors:
2020-07-11 11:54:12 +00:00
- "@jeremy1805"