mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
17 lines
295 B
Text
17 lines
295 B
Text
process BEDTOOLS_MERGE {
|
|
tag { input_file }
|
|
|
|
container 'quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0'
|
|
|
|
input:
|
|
path (input_file)
|
|
val (bedtools_merge_args)
|
|
|
|
output:
|
|
stdout()
|
|
|
|
script:
|
|
"""
|
|
bedtools merge -i ${input_file} ${bedtools_merge_args}
|
|
"""
|
|
}
|