Skip to content
Snippets Groups Projects
Verified Commit c52ab0e7 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

nf_modules: minors fix in deeptools and samtools

parent 48d80111
Branches
Tags
No related merge requests found
...@@ -15,7 +15,7 @@ process index_bam { ...@@ -15,7 +15,7 @@ process index_bam {
tuple val(file_id), path(bam) tuple val(file_id), path(bam)
output: output:
tuple val(file_id), path("*.bam*"), emit: bam tuple val(file_id), path("${bam}"), path("*.bam*"), emit: bam_idx
script: script:
""" """
...@@ -74,8 +74,8 @@ computeMatrix scale-regions -S ${bw} \ ...@@ -74,8 +74,8 @@ computeMatrix scale-regions -S ${bw} \
""" """
} }
params.compute_matrix = "" params.plot_profile = ""
params.compute_matrix_out = "" params.plot_profile_out = ""
process plot_profile { process plot_profile {
container = "${container_url}" container = "${container_url}"
label "big_mem_mono_cpus" label "big_mem_mono_cpus"
......
...@@ -125,8 +125,7 @@ process index_bam { ...@@ -125,8 +125,7 @@ process index_bam {
tuple val(file_id), path(bam) tuple val(file_id), path(bam)
output: output:
tuple val(file_id), path(bam), emit: bam tuple val(file_id), path("${bam}"), path("*.bam.bai"), emit: bam_idx
tuple val(file_id), path("*.bam.bai"), emit: bam_idx
script: script:
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment