Skip to content

Commit

Permalink
fix incoming sorting of prediction merge
Browse files Browse the repository at this point in the history
  • Loading branch information
tillenglert committed Jul 10, 2024
1 parent b4e75e4 commit 0043121
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflows/metapep.nf
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ workflow METAPEP {
ch_merge_predictions_input_warn = MERGE_PREDICTIONS_BUFFER.out.ch_prediction_warnings_merged_buffer.mix(ch_predictions_unbuffered.warnings)

MERGE_PREDICTIONS (
ch_merge_predictions_input_pred.collect(),
ch_merge_predictions_input_warn.collect()
ch_merge_predictions_input_pred.collect(sort: { it.baseName }),
ch_merge_predictions_input_warn.collect(sort: { it.baseName })
)
ch_versions = ch_versions.mix(MERGE_PREDICTIONS.out.versions)

Expand Down

0 comments on commit 0043121

Please sign in to comment.