mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-10 22:53:08 +00:00
Prettier
This commit is contained in:
parent
ecf0eea4f9
commit
082093f3de
2 changed files with 8 additions and 1 deletions
|
@ -208,4 +208,12 @@ process {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
withName: MULTIQC {
|
||||||
|
publishDir = [
|
||||||
|
path: { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" },
|
||||||
|
mode: params.publish_dir_mode,
|
||||||
|
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -165,7 +165,6 @@ workflow TAXPROFILER {
|
||||||
|
|
||||||
ch_multiqc_files = ch_multiqc_files.mix( PROFILING.out.mqc )
|
ch_multiqc_files = ch_multiqc_files.mix( PROFILING.out.mqc )
|
||||||
|
|
||||||
|
|
||||||
// TODO create multiQC module for metaphlan
|
// TODO create multiQC module for metaphlan
|
||||||
MULTIQC (
|
MULTIQC (
|
||||||
ch_multiqc_files.collect()
|
ch_multiqc_files.collect()
|
||||||
|
|
Loading…
Reference in a new issue