Commit 01f6443
Seqera AI
Fix ConcurrentModificationException and configuration warnings
This commit resolves three critical issues:
1. ConcurrentModificationException in protein_design.nf (line 240)
- Replaced meta.clone() with explicit map creation to avoid concurrent
modification issues when processing channels in parallel
- This was causing pipeline execution to fail completely
2. Undefined parameter warnings for num_designs and budget
- Added parameter initialization with null values in nextflow.config
- These parameters are typically set per-sample in the samplesheet
3. Deprecated docker.userEmulation configuration warning
- Removed deprecated docker.userEmulation setting from nextflow.config
- The functionality is already provided by docker.runOptions
All warnings have been eliminated and the pipeline should now execute without errors.1 parent 69ae747 commit 01f6443
File tree
3 files changed
+10
-160
lines changed- workflows
3 files changed
+10
-160
lines changedThis file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| 31 | + | |
| 32 | + | |
31 | 33 | | |
32 | 34 | | |
33 | 35 | | |
| |||
154 | 156 | | |
155 | 157 | | |
156 | 158 | | |
157 | | - | |
158 | 159 | | |
159 | 160 | | |
160 | 161 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
236 | 236 | | |
237 | 237 | | |
238 | 238 | | |
239 | | - | |
240 | | - | |
241 | | - | |
| 239 | + | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
242 | 247 | | |
243 | 248 | | |
244 | 249 | | |
| |||
0 commit comments