mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
750bd8c3e3
* Adding bigWig and deeptools computeMatrix files to config * Adding meta.yml for deeptools modules * Add test for deeptools modules * Fixing and reordering tags * Fixing conda test that worked in local... * Apply suggestions from code review * Changing bigwig file pattern to include bigwig extension * Saving after last change is a good practice 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}"
|
|
- version:
|
|
type: file
|
|
description: File containing software version
|
|
pattern: "*.{version.txt}"
|
|
|
|
authors:
|
|
- "@emiller88"
|
|
- "@drpatelh"
|
|
- "@joseespinosa"
|