Skip to content

Commit

Permalink
added output to hello for sub-workflow per terra suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
JVThomas committed Nov 19, 2023
1 parent 7ba6930 commit f933109
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test-workflows/hello_and_goodbye/hello.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,10 @@ workflow hello {
call bye.goodbye as french_goodbye {
input: farewell = "Au revoir"
}
output {
String hello_out = sayHello.out
String english_goodbye_out = english_goodbye.out
String spanish_goodbye_out = spanish_goodbye.out
String french_goodbye_out = french_goodbye.out
}
}

0 comments on commit f933109

Please sign in to comment.