From 39fe6afaf4777c35c7bd903839000d19a862e846 Mon Sep 17 00:00:00 2001 From: slsevilla Date: Mon, 26 Feb 2024 12:12:37 -0500 Subject: [PATCH] fix: #186 --- modules/local/chipseeker/annotate/main.nf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/local/chipseeker/annotate/main.nf b/modules/local/chipseeker/annotate/main.nf index 756304e..2091ccc 100644 --- a/modules/local/chipseeker/annotate/main.nf +++ b/modules/local/chipseeker/annotate/main.nf @@ -1,5 +1,5 @@ process CHIPSEEKER_ANNOTATE { - tag "${meta.id}.${meta.group}" + tag "${meta.id}" label 'peaks' label 'process_high' @@ -19,7 +19,7 @@ process CHIPSEEKER_ANNOTATE { """ chipseeker_annotate.R \\ --peak ${bed} \\ - --outfile-prefix ${meta.id}.${meta.group} \\ + --outfile-prefix ${meta.id} \\ --genome-txdb ${txdb} \\ --genome-annot ${annot_db} \\ --uptss 2000 \\ @@ -32,7 +32,7 @@ process CHIPSEEKER_ANNOTATE { """ for ftype in annotated.txt summary.txt genelist.txt annotation.Rds .png do - touch ${meta.id}.${meta.group}.\${ftype} + touch ${meta.id}.\${ftype} done """ }