mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
e8b33e6eb1
* hifiasm copied from fastqc * hifiasm tests init from fastqc * meta.yml init; test.yml and main.nf for printing version * Add hifiasm version printing * Removed spaced on an empty line * Reverted hifiasm from main * Added genomecov scale module * Updated tagging * Removed extra module - began merging * Removed extra module tests * Updated genomecov to take a scale value * Updated line endings * Removed redundant test * Update tests/modules/bedtools/genomecov/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Added checking for existing -bg arg * Update modules/bedtools/genomecov/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Update modules/bedtools/genomecov/main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> Co-authored-by: Sviatoslav Sidorov <sviatoslav.sidorov@crick.ac.uk> Co-authored-by: Svyatoslav Sidorov <svet.sidorov@gmail.com> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
51 lines
1.9 KiB
YAML
51 lines
1.9 KiB
YAML
name: bedtools_genomecov
|
|
description: Computes histograms (default), per-base reports (-d) and BEDGRAPH (-bg) summaries of feature coverage (e.g., aligned sequences) for a given genome.
|
|
keywords:
|
|
- bed
|
|
- bam
|
|
- genomecov
|
|
tools:
|
|
- bedtools:
|
|
description: |
|
|
A set of tools for genomic analysis tasks, specifically enabling genome arithmetic (merge, count, complement) on various file types.
|
|
documentation: https://bedtools.readthedocs.io/en/latest/content/tools/genomecov.html
|
|
licence: ['MIT']
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- intervals:
|
|
type: file
|
|
description: BAM/BED/GFF/VCF
|
|
pattern: "*.{bam|bed|gff|vcf}"
|
|
- scale:
|
|
type: value
|
|
description: Number containing the scale factor for the output. Set to 1 to disable. Setting to a value other than 1 will also get the -bg bedgraph output format as this is required for this command switch
|
|
- sizes:
|
|
type: file
|
|
description: Tab-delimited table of chromosome names in the first column and chromosome sizes in the second column
|
|
- extension:
|
|
type: string
|
|
description: Extension of the output file (e. g., ".bg", ".bedgraph", ".txt", ".tab", etc.) It is set arbitrarily by the user and corresponds to the file format which depends on arguments.
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- genomecov:
|
|
type: file
|
|
description: Computed genome coverage file
|
|
pattern: "*.${extension}"
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
authors:
|
|
- "@Emiller88"
|
|
- "@sruthipsuresh"
|
|
- "@drpatelh"
|
|
- "@sidorov-si"
|
|
- "@chris-cheshire"
|