Skip to content

Commit 60a1751

Browse files
authored
Merge pull request PolusAI#254 from jfennick/inference_multiple_outputs
move output_crd_path to last outputs: position due to inference
2 parents 2aa0784 + 2ebddce commit 60a1751

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

gpu/mdrun.cwl

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -236,15 +236,6 @@ outputs:
236236
glob: $(inputs.output_trr_path)
237237
format: edam:format_3910
238238

239-
output_crd_path:
240-
label: Path to the output GROMACS structure GRO file
241-
doc: |-
242-
Path to the output GROMACS structure GRO file
243-
type: File
244-
outputBinding:
245-
glob: $(inputs.output_crd_path)
246-
format: edam:format_2033
247-
248239
output_edr_path:
249240
label: Path to the output GROMACS portable energy file EDR
250241
doc: |-
@@ -291,6 +282,20 @@ outputs:
291282
glob: $(inputs.output_dhdl_path)
292283
format: edam:format_2033
293284

285+
# output_crd_path should go after output_dhdl_path because they both have the same
286+
# format: and we want inference to choose output_crd_path for grompp input_crd_path
287+
# output_crd_path should also go after output_cpt_path because gmx_rms input_structure_path
288+
# accepts both format_2033 and format_2333 and we want inference to choose output_crd_path
289+
290+
output_crd_path:
291+
label: Path to the output GROMACS structure GRO file
292+
doc: |-
293+
Path to the output GROMACS structure GRO file
294+
type: File
295+
outputBinding:
296+
glob: $(inputs.output_crd_path)
297+
format: edam:format_2033
298+
294299
$namespaces:
295300
edam: https://edamontology.org/
296301
cwltool: http://commonwl.org/cwltool#

0 commit comments

Comments
 (0)