mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
b67556e29f
* Add FastK/Merge * Update modules/fastk/merge/main.nf * Update modules/fastk/merge/meta.yml Co-authored-by: Sébastien Guizard <sguizard@ed.ac.uk> Co-authored-by: Sébastien Guizard <sguizard@ed.ac.uk>
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
name: "fastk_merge"
|
|
description: A tool to merge FastK histograms
|
|
keywords:
|
|
- merge
|
|
- k-mer
|
|
- histogram
|
|
- fastk
|
|
tools:
|
|
- fastk:
|
|
description: "A fast K-mer counter for high-fidelity shotgun datasets"
|
|
homepage: "https://github.com/thegenemyers/FASTK"
|
|
documentation: ""
|
|
tool_dev_url: "https://github.com/thegenemyers/FASTK"
|
|
doi: ""
|
|
licence: "https://github.com/thegenemyers/FASTK/blob/master/LICENSE"
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- fastk_hist:
|
|
type: file
|
|
description: A histogram files from the program FastK
|
|
pattern: "*.hist"
|
|
- fastk_ktab:
|
|
type: file
|
|
description: Histogram ktab files from the program FastK (option -t)
|
|
pattern: "*.ktab*"
|
|
- fastk_prof:
|
|
type: file
|
|
description: Histogram profile files from the program FastK (option -p)
|
|
pattern: "*.{prof,pidx}*"
|
|
|
|
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"
|
|
- fastk_hist:
|
|
type: file
|
|
description: A histogram files from the program FastK
|
|
pattern: "*.hist"
|
|
- fastk_ktab:
|
|
type: file
|
|
description: Histogram ktab files from the program FastK (option -t)
|
|
pattern: "*.ktab*"
|
|
- fastk_prof:
|
|
type: file
|
|
description: Histogram profile files from the program FastK (option -p)
|
|
pattern: "*.{prof,pidx}*"
|
|
|
|
authors:
|
|
- "@mahesh-panchal"
|