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

bedtools: add merge_bed process

parent 5b444810
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,23 @@ bedtools getfasta -name \
"""
}
process merge_bed {
container = "${container_url}"
label "big_mem_mono_cpus"
tag "${bed.baseName}"
input:
path bed
output:
tuple val(bed[0].simpleName), path("*_merged.fasta"), emit: bed
script:
"""
bedtools merge -i ${bed} > ${bed[0].simpleName}_merged.bed
"""
}
process bam_to_fastq_singleend {
container = "${container_url}"
label "big_mem_mono_cpus"
......
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