Skip to content

Commit

Permalink
fix: Set rpms to optional
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Jul 25, 2024
1 parent 63ad42e commit 06a1d11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/local/proseq2/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ process PROSEQ2 {
val assay_type

output:
tuple val(meta), path("results/${prefix}_QC_plus.rpm.bw"), emit: plus_rpm_bigwig
tuple val(meta), path("results/${prefix}_QC_minus.rpm.bw"), emit: minus_rpm_bigwig
tuple val(meta), path("results/${prefix}_QC_plus.rpm.bw"), emit: plus_rpm_bigwig, optional: true
tuple val(meta), path("results/${prefix}_QC_minus.rpm.bw"), emit: minus_rpm_bigwig, optional: true
tuple val(meta), path("results/${prefix}_QC_plus.bw"), emit: plus_bigwig
tuple val(meta), path("results/${prefix}_QC_minus.bw"), emit: minus_bigwig

Expand Down

0 comments on commit 06a1d11

Please sign in to comment.