nf-core_modules/modules/spades/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

84 lines
2.3 KiB
YAML

name: spades
description: Assembles a small genome (bacterial, fungal, viral)
keywords:
- genome
- assembly
- genome assembler
- small genome
- de novo assembler
tools:
- spades:
description: SPAdes (St. Petersburg genome assembler) is intended for both standard isolates and single-cell MDA bacteria assemblies.
homepage: http://cab.spbu.ru/files/release3.15.0/manual.html
documentation: http://cab.spbu.ru/files/release3.15.0/manual.html
tool_dev_url: https://github.com/ablab/spades
doi: 10.1089/cmb.2012.0021
licence: ["GPL v2"]
input:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- illumina:
type: file
description: |
List of input FastQ (Illumina or PacBio CCS reads) files
of size 1 and 2 for single-end and paired-end data,
respectively. This input data type is required.
- pacbio:
type: file
description: |
List of input PacBio CLR FastQ files of size 1.
- nanopore:
type: file
description: |
List of input FastQ files of size 1, originating from Oxford Nanopore technology.
- hmm:
type: file
description: File or directory with amino acid HMMs for Spades HMM-guided mode.
output:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- scaffolds:
type: file
description: |
Fasta file containing scaffolds
pattern: "*.fa.gz"
- contigs:
type: file
description: |
Fasta file containing contigs
pattern: "*.fa.gz"
- transcripts:
type: file
description: |
Fasta file containing transcripts
pattern: "*.fa.gz"
- gene_clusters:
type: file
description: |
Fasta file containing gene_clusters
pattern: "*.fa.gz"
- gfa:
type: file
description: |
gfa file containing assembly
pattern: "*.gfa.gz"
- log:
type: file
description: |
Spades log file
pattern: "*.log"
- versions:
type: file
description: File containing software versions
pattern: "versions.yml"
authors:
- "@JoseEspinosa"
- "@drpatelh"
- "@d4straub"