nf-core_modules/modules/racon/meta.yml
Matthias Hörtenhuber e745e167c1
Fix formatting in yaml files, add yamllint config (#1279)
* fix yml formatting

* allow fastq.gz and fq.gz as file input, add meta.yml and test

* fix yaml files

* Revert "allow fastq.gz and fq.gz as file input, add meta.yml and test"

This reverts commit 34002d7a7a8c7f7bb4600c3377f35c87849f71a4.

* prettier magic!

* fix comments for yamllint

* remove node version number

* fix linting errors

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2022-02-15 11:15:27 +00: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"