diff --git a/environment-pipeline.yml b/environment-pipeline.yml index edcdca9..0b2d8f7 100644 --- a/environment-pipeline.yml +++ b/environment-pipeline.yml @@ -18,4 +18,4 @@ dependencies: - conda-forge::r-tidyr=1.3.1 - pip: - - git+https://github.com/seqwell/longplexpy@0.2.1 + - git+https://github.com/seqwell/longplexpy@0.2.2 diff --git a/main.nf b/main.nf index a10e844..0c454e9 100644 --- a/main.nf +++ b/main.nf @@ -65,16 +65,14 @@ workflow { .map { _meta, stats -> stats } .collect() - // temp remove lima from the multiqc - // MULTIQC( - // FASTQC.out.archive.collect().ifEmpty([]), - // both_end_stats, - // either_end_stats - // ) - - MULTIQC( - FASTQC.out.archive.collect().ifEmpty([]) - ) + + MULTIQC( + FASTQC.out.archive.collect().ifEmpty([]), + both_end_stats, + either_end_stats + ) + + // Pipeline Cleanup //////////////////////////////////////////////////////////////////////////// diff --git a/modules/multiqc.nf b/modules/multiqc.nf index eb63d3c..51ef21d 100644 --- a/modules/multiqc.nf +++ b/modules/multiqc.nf @@ -2,8 +2,8 @@ process MULTIQC { input: path('fastqc/*') - //path('demux_i7_i5/*') - //path('demux_either_i7_i5/*') + path('demux_i7_i5/*') + path('demux_either_i7_i5/*') output: path('*multiqc_report.html') @@ -17,6 +17,9 @@ process MULTIQC { --force \\ --interactive \\ --no-data-dir \\ - --verbose + --verbose \\ + --ignore demux_i7_i5/ \\ + --ignore demux_either_i7_i5 + """ } diff --git a/nextflow.config b/nextflow.config index d9dcf2e..35ff284 100644 --- a/nextflow.config +++ b/nextflow.config @@ -108,7 +108,7 @@ process { withName: MULTIQC { memory = '8.0G' cpus = 4 - container = 'seqwell/longplexpy:0.2.1' + container = 'seqwell/longplexpy:0.2.2-2-gd350815' publishDir = [ path: "${params.output}/multiqc", pattern: '*.html',