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

samtools: update to follow CONTRIBUTING.md

parent 7c1e0c6c
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ version = "2.25.0"
container_url = "lbmc/bedtools:${version}"
params.fasta_from_bed = "-name"
params.fasta_from_bed_out = "-name"
params.fasta_from_bed_out = ""
process fasta_from_bed {
container = "${container_url}"
label "big_mem_mono_cpus"
......
......@@ -44,7 +44,7 @@ process filter_bam {
input:
tuple val(file_id), path(bam)
path bed
tuple val(bed_id), path(bed)
output:
tuple val(file_id), path("*_filtered.bam"), emit: bam
......@@ -208,7 +208,7 @@ process flagstat_2_multiqc {
tuple val(file_id), path(tsv)
output:
path "*.txt" , emit: report
tuple val(file_id), path("*.txt"), emit: report
"""
mv ${tsv} ${tsv.simpleName}.flagstat.txt
"""
......@@ -221,7 +221,7 @@ process idxstat_2_multiqc {
tuple val(file_id), path(tsv)
output:
path "*.txt", emit: report
tuple val(file_id), path("*.txt"), emit: report
"""
mv ${tsv} ${tsv.simpleName}.idxstats.txt
"""
......
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