Skip to content

Commit

Permalink
add some views to debug the full run
Browse files Browse the repository at this point in the history
  • Loading branch information
nvnieuwk committed Dec 19, 2024
1 parent 0db19d9 commit 350de1b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions subworkflows/local/fusionreport_workflow.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,16 @@ workflow FUSIONREPORT_WORKFLOW {
ch_csv = Channel.empty()

if (!params.fusioninspector_only) {
arriba_fusions.view { it -> "arriba fusions:${it}"}
starfusion_fusions.view { it -> "starfusion fusions:${it}"}
fusioncatcher_fusions.view { it -> "fusioncatcher fusions:${it}"}

reads_fusions = reads
.join(arriba_fusions, remainder: true)
.join(starfusion_fusions, remainder: true)
.join(fusioncatcher_fusions, remainder: true)
.join(arriba_fusions, failOnMismatch:true, failOnDuplicate:true)
.join(starfusion_fusions, failOnMismatch:true, failOnDuplicate:true)
.join(fusioncatcher_fusions, failOnMismatch:true, failOnDuplicate:true)

reads_fusions.view()

FUSIONREPORT(reads_fusions, fusionreport_ref, params.tools_cutoff)
ch_fusion_list = FUSIONREPORT.out.fusion_list
Expand Down

0 comments on commit 350de1b

Please sign in to comment.