nf-core_modules/modules/racon/meta.yml
avantonder 977d96ed0b
Add Racon module to nf-core/modules (#949)
* add racon

* add racon

* add racon

* add racon module

* add racon module

* edit racon module

* edit racon module

* edit racon module

* edit racon module

Co-authored-by: Daniel Straub <42973691+d4straub@users.noreply.github.com>
Co-authored-by: Chris Cheshire <chris.j.cheshire@gmail.com>
2021-10-29 13:33:38 +01:00

52 lines
1.4 KiB
YAML

name: racon
description: Consensus module for raw de novo DNA assembly of long uncorrected reads
keywords:
- assembly
- pacbio
- nanopore
- polish
tools:
- racon:
description: Ultrafast consensus module for raw de novo genome assembly of long uncorrected reads.
homepage: https://github.com/lbcb-sci/racon
documentation: https://github.com/lbcb-sci/racon
tool_dev_url: https://github.com/lbcb-sci/racon
doi: https://doi.org/10.1101/gr.214270.116
licence: ['MIT']
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. Racon expects single end reads
pattern: "*.{fastq,fastq.gz,fq,fq.gz}"
- assembly:
type: file
description: Genome assembly to be improved
pattern: "*.{fasta,fa}"
- paf:
type: file
description: Alignment in PAF format
pattern: "*.paf"
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- versions:
type: file
description: File containing software versions
pattern: "versions.yml"
- improved_assembly:
type: file
description: Improved genome assembly
pattern: "*_assembly_consensus.fasta.gz"
authors:
- "@avantonder"