Skip to content

Commit

Permalink
Fix minor issues related to toulligqc + (no)demux
Browse files Browse the repository at this point in the history
  • Loading branch information
dialvarezs committed Aug 26, 2024
1 parent 788163b commit 07104fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ workflow {
CollectVersions.out.software_versions,
CollectVersions.out.model_versions,
BasecallingAndDemux.out.sequencing_summary,
samples.map { it[0] }.collect(),
samples.map { it[0] }.collect().ifEmpty { [] },
data_dir,
multiqc_config
)
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/reports.nf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ process toulligQC {
script:
report_filename = "${slugify(params.experiment_name)}_toulligqc.html"
barcode_list = ["NB23", "NB24"]
barcodes_opt = barcode_list
barcodes_opt = !params.skip_demultiplexing && barcode_list
? "--barcoding --barcodes ${barcode_list.join(',')}"
: ''
"""
Expand Down

0 comments on commit 07104fc

Please sign in to comment.