2020-07-15 16:15:49 +00:00
|
|
|
def MODULE = "bedtools_intersect"
|
|
|
|
params.publish_dir = MODULE
|
|
|
|
params.publish_results = "default"
|
|
|
|
|
2020-07-14 14:17:23 +00:00
|
|
|
process INTERSECT_BED {
|
|
|
|
tag "$input_file_1-$input_file_2"
|
|
|
|
|
2020-07-15 16:15:49 +00:00
|
|
|
publishDir "${params.out_dir}/${params.publish_dir}",
|
|
|
|
mode: params.publish_dir_mode,
|
|
|
|
saveAs: { filename ->
|
|
|
|
if (params.publish_results == "none") null
|
|
|
|
else filename }
|
|
|
|
|
|
|
|
//container "docker.pkg.github.com/nf-core/$MODULE"
|
2020-07-14 14:17:23 +00:00
|
|
|
container 'quay.io/biocontainers/bedtools:2.29.2--hc088bd4_0'
|
|
|
|
|
2020-07-15 16:15:49 +00:00
|
|
|
conda "${moduleDir}/environment.yml"
|
|
|
|
|
2020-07-14 14:17:23 +00:00
|
|
|
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}
|
|
|
|
"""
|
|
|
|
}
|
|
|
|
|