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>
52 lines
1.4 KiB
YAML
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"
|