Skip to content

Commit

Permalink
fix: #186
Browse files Browse the repository at this point in the history
  • Loading branch information
slsevilla committed Feb 26, 2024
1 parent 49eb54c commit 39fe6af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/local/chipseeker/annotate/main.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process CHIPSEEKER_ANNOTATE {
tag "${meta.id}.${meta.group}"
tag "${meta.id}"
label 'peaks'
label 'process_high'

Expand All @@ -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 \\
Expand All @@ -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
"""
}

0 comments on commit 39fe6af

Please sign in to comment.