Skip to content

Commit

Permalink
Merge pull request nf-core#1064 from nf-core/fix_fastQC
Browse files Browse the repository at this point in the history
add ext.prefix
  • Loading branch information
TCLamnidis authored Apr 26, 2024
2 parents eef7726 + 1cfee56 commit 5b13e58
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ process {
withName: FASTQC {
tag = { "${meta.sample_id}_${meta.library_id}_L${meta.lane}" }
ext.args = '--quiet'
ext.prefix = { "${meta.sample_id}_${meta.library_id}_L${meta.lane}" }
publishDir = [
path: { "${params.outdir}/preprocessing/fastqc_raw/" },
mode: params.publish_dir_mode,
Expand All @@ -49,6 +50,7 @@ process {
withName: FASTQC_PROCESSED {
tag = { "${meta.sample_id}_${meta.library_id}_L${meta.lane}" }
ext.args = '--quiet'
ext.prefix = { "${meta.sample_id}_${meta.library_id}_L${meta.lane}" }
publishDir = [
path: { "${params.outdir}/preprocessing/fastqc_processed/" },
mode: params.publish_dir_mode,
Expand Down

0 comments on commit 5b13e58

Please sign in to comment.