Skip to content

Commit

Permalink
Showcase example of running cromwell, womtool and sprocket. Closes #8.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsmalladi committed Apr 24, 2024
1 parent b638b52 commit 4bfb061
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,25 @@ Devcontainer specs:
- should print numerous log messages, and conclude with...
- `miniwdl run_self_test OK`

#### Test cromwell/womtools installation

- open a command prompt and run...
- `cromwell run test/test.wdl`
- …test of the example workflow
- should print numerous log messages, and conclude with...
- `Workflow HelloWorld complete. Final Outputs:`
- `womtool --help`
- should print help documentation

#### Test sprocket installation

- open a command prompt and run...
- `sprocket lint test/test.wdl`
- should print the following error
- ```
workflow HelloWorld {
^ The following tokens are required: document.
```



12 changes: 12 additions & 0 deletions test/test.wdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
workflow HelloWorld {
call WriteGreeting
}

task WriteGreeting {
command {
echo "Hello World"
}
output {
File outfile = stdout()
}
}

0 comments on commit 4bfb061

Please sign in to comment.