Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion environment-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
18 changes: 8 additions & 10 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -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 ////////////////////////////////////////////////////////////////////////////

Expand Down
9 changes: 6 additions & 3 deletions modules/multiqc.nf
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -17,6 +17,9 @@ process MULTIQC {
--force \\
--interactive \\
--no-data-dir \\
--verbose
--verbose \\
--ignore demux_i7_i5/ \\
--ignore demux_either_i7_i5

"""
}
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Loading