nf-core_modules/modules/spades/meta.yml
Harshil Patel e937c7950a
Rename software/ directory to modules/ to re-organise module structure (#567)
* Update README

* Rename pytest_software.yml to pytest_modules.yml

* Rename main software directory to modules

* Remove deprecated modules

* Rename tests software to modules

* Replace paths for tests in pytest_modules.yml

* Replace software with modules in Github Actions

* Replace software with modules in main.nf tests

* Rename software to modules in test.yml
2021-07-07 10:10:18 +01:00

69 lines
1.8 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 ]
- reads:
type: file
description: |
List of input FastQ files of size 1 and 2 for single-end and paired-end data,
respectively.
- 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
- contigs:
type: file
description: |
Fasta file containing contigs
- transcripts:
type: file
description: |
Fasta file containing transcripts
- gene_clusters:
type: file
description: |
Fasta file containing gene_clusters
- gfa:
type: file
description: |
gfa file containing assembly
- log:
type: file
description: |
Spades log file
- version:
type: file
description: File containing software version
pattern: "*.{version.txt}"
authors:
- "@JoseEspinosa"
- "@drpatelh"