mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
|
name: "motus_profile"
|
||
|
description: Taxonomic meta-omics profiling using universal marker genes
|
||
|
keywords:
|
||
|
- classify
|
||
|
- metagenomics
|
||
|
- fastq
|
||
|
- taxonomic profiling
|
||
|
tools:
|
||
|
- "motus":
|
||
|
description: "Marker gene-based OTU (mOTU) profiling"
|
||
|
homepage: "None"
|
||
|
documentation: "https://github.com/motu-tool/mOTUs/wiki"
|
||
|
tool_dev_url: "https://github.com/motu-tool/mOTUs"
|
||
|
doi: "10.1038/s41467-019-08844-4"
|
||
|
licence: "['GPL v3']"
|
||
|
|
||
|
## TODO nf-core: Add a description of all of the variables used as input
|
||
|
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/fasta files of size 1 and 2 for single-end and paired-end data,
|
||
|
respectively.
|
||
|
pattern: "*.{fastq,fq,fasta,fa,fastq.gz,fq.gz,fasta.gz,fa.gz}"
|
||
|
- db:
|
||
|
type: derectory
|
||
|
description: |
|
||
|
mOTUs database downloaded by `motus downloadDB`
|
||
|
|
||
|
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"
|
||
|
- out:
|
||
|
type: file
|
||
|
description: Results with taxonomic classification of each read
|
||
|
pattern: "*.out"
|
||
|
- bam:
|
||
|
type: file
|
||
|
description: Sorted BAM file
|
||
|
pattern: "*.{bam}"
|
||
|
|
||
|
authors:
|
||
|
- "@jianhong"
|