Skip to content

Commit 05ea30a

Browse files
authored
Merge pull request PolusAI#242 from jfennick/overload_entire_list
overload entire list
2 parents a600a64 + f8b0cf0 commit 05ea30a

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

examples/docking/vs_demo_2.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,13 @@ wic:
171171
in:
172172
input_top_zip_path: !* genion_complex.zip
173173
(3, mdrun):
174+
# NOTE: If there are multiple anchors / multiple outputs
175+
# in the original source file, you must overload ALL of them.
176+
# (because the entire list gets replaced)
174177
out:
175-
- output_crd_path: !& prod_complex.gro
178+
- output_crd_path: !& prod_complex.gro # overload prod.gro
179+
- output_trr_path: !& prod.trr
180+
- output_edr_path: !& prod.edr
176181
(4, cwl_watcher_analysis.yml):
177182
wic:
178183
backend: complex

examples/docking/vs_demo_3.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,13 @@ wic:
147147
in:
148148
input_top_zip_path: !* genion_complex.zip
149149
(3, mdrun):
150+
# NOTE: If there are multiple anchors / multiple outputs
151+
# in the original source file, you must overload ALL of them.
152+
# (because the entire list gets replaced)
150153
out:
151-
- output_crd_path: !& prod_complex.gro
154+
- output_crd_path: !& prod_complex.gro # overload prod.gro
155+
- output_trr_path: !& prod.trr
156+
- output_edr_path: !& prod.edr
152157
(4, cwl_watcher_analysis.yml):
153158
wic:
154159
backend: complex

examples/docking/vs_demo_4.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,13 @@ wic:
222222
in:
223223
input_top_zip_path: !* genion_complex.zip
224224
(3, mdrun):
225+
# NOTE: If there are multiple anchors / multiple outputs
226+
# in the original source file, you must overload ALL of them.
227+
# (because the entire list gets replaced)
225228
out:
226-
- output_crd_path: !& prod_complex.gro
229+
- output_crd_path: !& prod_complex.gro # overload prod.gro
230+
- output_trr_path: !& prod.trr
231+
- output_edr_path: !& prod.edr
227232
(4, cwl_watcher_analysis.yml):
228233
wic:
229234
backend: complex

0 commit comments

Comments
 (0)