mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
19 lines
357 B
Text
19 lines
357 B
Text
process INTERSECT_BED {
|
|
tag "$input_file_1-$input_file_2"
|
|
|
|
container 'quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0'
|
|
|
|
input:
|
|
path (input_file_1)
|
|
path (input_file_2)
|
|
val (intersectbed_args)
|
|
|
|
output:
|
|
stdout()
|
|
|
|
script:
|
|
"""
|
|
bedtools intersect -a ${input_file_1} -b ${input_file_2} ${intersectbed_args}
|
|
"""
|
|
}
|
|
|