-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc8436a
commit 6d27bac
Showing
4 changed files
with
222 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
e2e-tests/src/main/resources/com/dnastack/wes/service/wdl/workflow_with_all_output_types.wdl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
task echo { | ||
String name | ||
command { | ||
echo "Hello ${name}" | ||
>&2 echo "Goodbye ${name}" | ||
echo "Bye" > "test.txt" | ||
} | ||
|
||
runtime { | ||
docker: "ubuntu" | ||
} | ||
|
||
output { | ||
File out = stdout() | ||
File out2 = "test.txt" | ||
Array[File] arrayOut = [out, out2] | ||
} | ||
} | ||
|
||
workflow hello_world { | ||
String name | ||
call echo { | ||
input: | ||
name = name | ||
} | ||
output { | ||
File out = echo.out | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters