Skip to content

Commit 3a242dd

Browse files
authored
Merge pull request #66 from seqeralabs/seqera-ai/20251128-161747-fix-boltzgen-input-tuple
Fix BOLTZGEN_RUN input tuple mismatch
2 parents 5108550 + 49281dc commit 3a242dd

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

workflows/protein_design.nf

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,14 @@ workflow PROTEIN_DESIGN {
2828
// Run Boltzgen on design YAMLs
2929
// ========================================================================
3030

31+
// Prepare Boltzgen input by removing target_msa (not needed for Boltzgen)
32+
ch_boltzgen_input = ch_input
33+
.map { meta, design_yaml, structure_files, target_msa ->
34+
[meta, design_yaml, structure_files]
35+
}
36+
3137
// Run Boltzgen for each design in parallel
32-
BOLTZGEN_RUN(ch_input, ch_cache)
38+
BOLTZGEN_RUN(ch_boltzgen_input, ch_cache)
3339

3440
// ========================================================================
3541
// ProteinMPNN: Optimize sequences for designed structures

0 commit comments

Comments
 (0)