nf-core_modules/modules/ivar/trim/meta.yml

52 lines
1.5 KiB
YAML
Raw Normal View History

2021-02-13 00:02:48 +00:00
name: ivar_trim
description: Trim primer sequences rom a BAM file with iVar
keywords:
- amplicon sequencing
- trimming
- fasta
tools:
- ivar:
description: |
iVar - a computational package that contains functions broadly useful for viral amplicon-based sequencing.
homepage: https://github.com/andersen-lab/ivar
documentation: https://andersen-lab.github.io/ivar/html/manualpage.html
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- bam:
type: file
2021-02-24 12:54:45 +00:00
description: Co-ordinate sorted BAM file
2021-02-13 00:02:48 +00:00
pattern: "*.bam"
2021-02-24 12:54:45 +00:00
- bai:
type: file
description: Index file for co-ordinate sorted BAM file
pattern: "*.bai"
2021-02-13 00:02:48 +00:00
- bed:
type: file
description: BED file with primer labels and positions
pattern: "*.bed"
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2021-02-13 00:14:46 +00:00
- bam:
2021-02-13 00:02:48 +00:00
type: file
2021-02-13 00:14:46 +00:00
description: iVar generated trimmed bam file (unsorted)
2021-02-13 08:17:03 +00:00
pattern: "*.bam"
2021-02-24 12:54:45 +00:00
- log:
type: file
description: Log file generated by iVar for use with MultiQC
pattern: "*.log"
2021-02-13 00:02:48 +00:00
- version:
type: file
description: File containing software version
pattern: "*.{version.txt}"
authors:
- "@andersgs"
- "@drpatelh"