mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
ab93a1afa7
* Specify more guidelines on input channels * Linting * Updates based on code review * Update README.md * Fix broken sentence * Remove reads from output channel following module guidelines. Should do a .join() based on $meta, to reassociate. Co-authored-by: Gregor Sturm <mail@gregor-sturm.de>
54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
name: bwa_aln
|
|
description: Find SA coordinates of the input reads for bwa short-read mapping
|
|
keywords:
|
|
- bwa
|
|
- aln
|
|
- short-read
|
|
- align
|
|
- reference
|
|
- fasta
|
|
- map
|
|
- fastq
|
|
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://bio-bwa.sourceforge.net/
|
|
doi: "10.1093/bioinformatics/btp324"
|
|
licence: ['GPL v3']
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- reads:
|
|
type: file
|
|
description: |
|
|
List of input FastQ files of size 1 and 2 for single-end and paired-end data,
|
|
respectively.
|
|
- index:
|
|
type: file
|
|
description: BWA genome index files
|
|
pattern: "Directory containing BWA index *.{amb,ann,bwt,pac,sa}"
|
|
|
|
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}"
|
|
- sai:
|
|
type: file
|
|
description: Single or paired SA coordinate files
|
|
pattern: "*.sai"
|
|
|
|
authors:
|
|
- "@jfy133"
|