Add WDL language support (#3858)

* Add WDL language support

* Add ace mode
This commit is contained in:
Chris Llanwarne
2017-10-14 12:12:47 -04:00
committed by Colin Seymour
parent a47008ea00
commit e51b5ec9b7
9 changed files with 156 additions and 0 deletions

21
samples/wdl/hello.wdl Normal file
View File

@@ -0,0 +1,21 @@
# Sample originally from https://github.com/broadinstitute/centaur
task hello {
String addressee
command {
echo "Hello ${addressee}!"
}
output {
String salutation = read_string(stdout())
}
runtime {
docker: "ubuntu@sha256:71cd81252a3563a03ad8daee81047b62ab5d892ebbfbf71cf53415f29c130950"
}
}
workflow wf_hello {
call hello
output {
hello.salutation
}
}