Skip to content

Commit

Permalink
Fix merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor committed Nov 21, 2023
1 parent 1c0081c commit 831961e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions workflows/imputationserver.nf
Original file line number Diff line number Diff line change
Expand Up @@ -62,21 +62,21 @@ workflow IMPUTATIONSERVER {

PHASING(
imputation_ch
)

if (params.mode == 'imputation') {
imputation_ch = PHASING.out.phased_ch
)

if (params.mode == 'imputation') {
imputation_ch = PHASING.out.phased_ch
}
}

IMPUTATION(
imputation_ch
)
ENCRYPTION(
IMPUTATION.out.groupTuple()
)
}
IMPUTATION(
imputation_ch
)

ENCRYPTION(
IMPUTATION.out.groupTuple()
)

}
}

Expand Down

0 comments on commit 831961e

Please sign in to comment.