2021-08-02 13:21:23 +00:00
|
|
|
name: bwa_samse
|
|
|
|
description: Convert bwa SA coordinate file to SAM format
|
|
|
|
keywords:
|
|
|
|
- bwa
|
|
|
|
- aln
|
|
|
|
- short-read
|
|
|
|
- align
|
|
|
|
- reference
|
|
|
|
- fasta
|
|
|
|
- map
|
|
|
|
- sam
|
|
|
|
- bam
|
|
|
|
|
|
|
|
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"
|
2021-10-22 22:39:54 +00:00
|
|
|
licence: ['GPL-3.0-or-later']
|
2021-08-02 13:21:23 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information.
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- reads:
|
|
|
|
type: file
|
|
|
|
description: FASTQ files specified alongside meta in input channel.
|
|
|
|
pattern: "*.{fastq,fq}.gz"
|
|
|
|
- sai:
|
|
|
|
type: file
|
|
|
|
description: SAI file specified alongside meta and reads in input channel.
|
|
|
|
pattern: "*.sai"
|
|
|
|
- index:
|
|
|
|
type: directory
|
|
|
|
description: Directory containing BWA index files (amb,ann,bwt,pac,sa) from BWA_INDEX
|
|
|
|
pattern: "bwa/"
|
|
|
|
|
|
|
|
output:
|
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
2021-10-03 07:20:26 +00:00
|
|
|
- versions:
|
2021-08-02 13:21:23 +00:00
|
|
|
type: file
|
2021-10-03 07:20:26 +00:00
|
|
|
description: File containing software versions
|
2021-09-27 08:41:24 +00:00
|
|
|
pattern: "versions.yml"
|
2021-08-02 13:21:23 +00:00
|
|
|
- bam:
|
|
|
|
type: file
|
|
|
|
description: BAM file
|
|
|
|
pattern: "*.bam"
|
|
|
|
|
|
|
|
authors:
|
|
|
|
- "@jfy133"
|