mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +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>
61 lines
1.5 KiB
YAML
61 lines
1.5 KiB
YAML
name: deeptools_plotfingerprint
|
|
description: plots cumulative reads coverages by BAM file
|
|
keywords:
|
|
- plot
|
|
- fingerprint
|
|
- cumulative coverage
|
|
- bam
|
|
tools:
|
|
- deeptools:
|
|
description: A set of user-friendly tools for normalization and visualization of deep-sequencing data
|
|
homepage:
|
|
documentation: https://deeptools.readthedocs.io/en/develop/index.html
|
|
tool_dev_url: https://github.com/deeptools/deepTools
|
|
doi: "10.1093/nar/gku365"
|
|
licence: ["GPL v3"]
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test' ]
|
|
- bam:
|
|
type: file
|
|
description: One or more BAM files
|
|
pattern: "*.{bam}"
|
|
- bais:
|
|
type: file
|
|
description: Corresponding BAM file indexes
|
|
pattern: "*.bam.bai"
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- pdf:
|
|
type: file
|
|
description: |
|
|
Output figure containing resulting plot
|
|
pattern: "*.{plotFingerprint.pdf}"
|
|
- matrix:
|
|
type: file
|
|
description: |
|
|
Output file summarizing the read counts per bin
|
|
pattern: "*.{plotFingerprint.raw.txt}"
|
|
- metrics:
|
|
type: file
|
|
description: |
|
|
file containing BAM file quality metrics
|
|
pattern: "*.{qcmetrics.txt}"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
|
|
authors:
|
|
- "@emiller88"
|
|
- "@drpatelh"
|
|
- "@joseespinosa"
|