nf-core_modules/software/bedtools/genomecov/main.nf

19 lines
321 B
Text
Raw Normal View History

2020-07-14 14:00:10 +00:00
process GENOMECOV {
tag {bam}
container 'quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0'
input:
path (bam)
path (chrom_sizes)
2020-07-14 14:00:10 +00:00
val (genomecov_args)
output:
stdout()
script:
"""
bedtools genomecov -ibam ${bam} -g ${chrom_sizes} ${genomecov_args}
2020-07-14 14:00:10 +00:00
"""
}