mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
18 lines
332 B
Text
18 lines
332 B
Text
process BEDTOOLS_GENOMECOV {
|
|
tag {bam}
|
|
|
|
container 'quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0'
|
|
|
|
input:
|
|
path (bam)
|
|
path (chrom_sizes)
|
|
val (bedtools_genomecov_args)
|
|
|
|
output:
|
|
stdout()
|
|
|
|
script:
|
|
"""
|
|
bedtools genomecov -ibam ${bam} -g ${chrom_sizes} ${bedtools_genomecov_args}
|
|
"""
|
|
}
|