mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +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>
33 lines
937 B
YAML
33 lines
937 B
YAML
name: bbmap_index
|
|
description: This module calls bbmap.sh to create an index from a fasta file, ready to be used by bbmap.sh in mapping mode.
|
|
keywords:
|
|
- mapping
|
|
- index
|
|
- fasta
|
|
tools:
|
|
- bbmap:
|
|
description: BBMap is a short read aligner, as well as various other bioinformatic tools.
|
|
homepage: https://jgi.doe.gov/data-and-tools/bbtools/bb-tools-user-guide/
|
|
documentation: https://jgi.doe.gov/data-and-tools/bbtools/bb-tools-user-guide/
|
|
tool_dev_url: None
|
|
doi: ""
|
|
licence: ["UC-LBL license (see package)"]
|
|
|
|
input:
|
|
- fasta:
|
|
type: fasta
|
|
description: fasta formatted file with nucleotide sequences
|
|
pattern: "*.{fna,fa,fasta}"
|
|
|
|
output:
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- db:
|
|
type: directory
|
|
description: Directory with index files
|
|
pattern: "ref"
|
|
|
|
authors:
|
|
- "@daniellundin"
|