mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
e745e167c1
* 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>
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: raven
|
|
description: De novo genome assembler for long uncorrected reads.
|
|
keywords:
|
|
- de novo
|
|
- assembly
|
|
- genome
|
|
- genome assembler
|
|
- long uncorrected reads
|
|
tools:
|
|
- raven:
|
|
description: Raven is a de novo genome assembler for long uncorrected reads.
|
|
homepage: https://github.com/lbcb-sci/raven
|
|
documentation: https://github.com/lbcb-sci/raven#usage
|
|
tool_dev_url: https://github.com/lbcb-sci/raven
|
|
doi: doi.org/10.1038/s43588-021-00073-4
|
|
licence: ["MIT"]
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', suffix:'bacteria' ]
|
|
- reads:
|
|
type: file
|
|
description: Input file in FASTA/FASTQ format.
|
|
pattern: "*.{fasta,fastq,fasta.gz,fastq.gz,fa,fq,fa.gz,fq.gz}"
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', suffix:'bacteria' ]
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- fasta:
|
|
type: file
|
|
description: Assembled FASTA file
|
|
pattern: "*.fasta.gz"
|
|
- gfa:
|
|
type: file
|
|
description: Repeat graph
|
|
pattern: "*.gfa.gz"
|
|
|
|
authors:
|
|
- "@fmalmeida"
|