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
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ process index_bam {
tuple val(file_id), path(bam)
output:
tuple val(file_id), path("*.bam*"), emit: bam
tuple val(file_id), path("${bam}"), path("*.bam*"), emit: bam_idx
script:
"""
......@@ -74,8 +74,8 @@ computeMatrix scale-regions -S ${bw} \
"""
}
params.compute_matrix = ""
params.compute_matrix_out = ""
params.plot_profile = ""
params.plot_profile_out = ""
process plot_profile {
container = "${container_url}"
label "big_mem_mono_cpus"
......
......@@ -125,8 +125,7 @@ process index_bam {
tuple val(file_id), path(bam)
output:
tuple val(file_id), path(bam), emit: bam
tuple val(file_id), path("*.bam.bai"), emit: bam_idx
tuple val(file_id), path("${bam}"), path("*.bam.bai"), emit: bam_idx
script:
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment