diff --git a/src/nf_modules/ucsc/main.nf b/src/nf_modules/ucsc/main.nf index fbb166ef579072873da23b88542b13b5b6891050..6465cffccab79ee452e1feebec5f573860973008 100644 --- a/src/nf_modules/ucsc/main.nf +++ b/src/nf_modules/ucsc/main.nf @@ -35,6 +35,27 @@ sort -T ./ -k1,1 -k2,2n ${bg} > \ """ } +params.wig_to_bedgraph = "" +params.wig_to_bedgraph_out = "" +process bigwig_to_wig { + container = "${container_url}" + label "big_mem_mono_cpus" + tag "${file_id}" + if (params.bigwig_to_wig_out != "") { + publishDir "results/${params.bigwig_to_wig_out}", mode: 'copy' + } + + input: + tuple val(file_id) path(wig) + + output: + tuple val(file_id), path("*.bg"), emit: wig + + script: +""" +wigToBedGraph ${wig} ${wig.simpleName}.bg +""" +} params.bigwig_to_wig = "" params.bigwig_to_wig_out = ""