Skip to content

Commit 75d9460

Browse files
committed
restore InterOp output
1 parent da7621b commit 75d9460

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

main.nf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ workflow {
7070
demultiplex_reports = PREPROCESSING.out.demultiplex_reports.transpose()
7171
demultiplex_logs = PREPROCESSING.out.demultiplex_logs.transpose()
7272
demultiplex_fastq = PREPROCESSING.out.demultiplex_fastq.transpose()
73-
demultiplex_interop = PREPROCESSING.out.demultiplex_interop.transpose()
73+
demultiplex_interop = PREPROCESSING.out.demultiplex_interop.transpose(by: 1)
7474
falco_html = PREPROCESSING.out.falco_html
7575
falco_txt = PREPROCESSING.out.falco_txt
7676
fastp_json = PREPROCESSING.out.fastp_json
@@ -122,7 +122,9 @@ output {
122122
}
123123
}
124124
demultiplex_interop {
125-
path "InterOp/"
125+
path { _meta, bin ->
126+
bin >> "Interop/${bin.name}"
127+
}
126128
}
127129
demultiplex_fastq {
128130
path { meta, fastq ->

workflows/preprocessing.nf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -419,9 +419,7 @@ workflow PREPROCESSING {
419419
demultiplex_logs = BCLCONVERT.out.logs.map { meta, logs ->
420420
return [meta, files(logs.resolve("*"))]
421421
}
422-
demultiplex_interop = ch_illumina_flowcell.flowcell.map { meta, _samplesheet, flowcell ->
423-
return [meta, files(flowcell.resolve("InterOp/*.bin"))]
424-
}
422+
demultiplex_interop = BCLCONVERT.out.interop
425423
demultiplex_fastq = ch_demultiplexed_fastq_with_sampleinfo.other
426424
falco_html = FALCO.out.html
427425
falco_txt = FALCO.out.txt

0 commit comments

Comments
 (0)