mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 13:23:09 +00:00
18 lines
295 B
Text
18 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}
|
||
|
"""
|
||
|
}
|