From e5c21d15a34664928067ba1d8f985ee815d25f48 Mon Sep 17 00:00:00 2001 From: sruthipsuresh <58604926+sruthipsuresh@users.noreply.github.com> Date: Mon, 1 Feb 2021 19:23:46 -0600 Subject: [PATCH] Update software/bedtools/complement/main.nf Co-authored-by: Harshil Patel --- software/bedtools/complement/main.nf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/bedtools/complement/main.nf b/software/bedtools/complement/main.nf index e09e9f73..02089af4 100644 --- a/software/bedtools/complement/main.nf +++ b/software/bedtools/complement/main.nf @@ -29,6 +29,6 @@ process BEDTOOLS_COMPLEMENT { def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}" """ bedtools complement -i $beds -g $sizes ${options.args} > ${prefix}.complement.bed - bedtools --version | sed -e "s/Bedtools v//g" > ${software}.version.txt + bedtools --version | sed -e "s/bedtools v//g" > ${software}.version.txt """ }