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

samtools: fix filter_bam_mapped

parent 30d17edc
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ process filter_bam_mapped {
tuple val(file_id), path("*_mapped.bam"), emit: bam
script:
"""
samtools view -@ ${task.cpus} -F 4 -hb ${bam} -L ${bed} > ${file_id}_mapped.bam
samtools view -@ ${task.cpus} -F 4 -hb ${bam} > ${file_id}_mapped.bam
"""
}
......
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