Skip to content

Commit

Permalink
update fastqc config
Browse files Browse the repository at this point in the history
  • Loading branch information
sguizard committed Oct 18, 2023
1 parent e6a0b75 commit dd97948
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,6 @@ process {
}
}

if (!(params.skip_fastqc)) {
process {
withName: '.*:FASTQC_FASTP:FASTQC_.*' {
ext.args = '--quiet'
}
}
}

if (!params.skip_fastp) {
process {
withName: 'FASTP' {
Expand Down Expand Up @@ -130,6 +122,14 @@ if (!params.skip_fastp) {

if (!params.skip_fastqc) {
process {
withName: '.*:.*:FASTQC_FASTP:FASTQC_RAW' {
ext.args = '--quiet'
publishDir = [
path: { "${params.outdir}/fastqc/raw" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}
withName: '.*:.*:FASTQC_FASTP:FASTQC_TRIM' {
ext.args = '--quiet'
publishDir = [
Expand Down

0 comments on commit dd97948

Please sign in to comment.