mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
Add WDL language support (#3858)
* Add WDL language support * Add ace mode
This commit is contained in:
committed by
Colin Seymour
parent
a47008ea00
commit
e51b5ec9b7
21
samples/wdl/hello.wdl
Normal file
21
samples/wdl/hello.wdl
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user