modified: myjupyterlab.sh
[GalaxyCodeBases.git] / etc / gatk-wdl / fm2 / hello.wdl
blob4e193e575a6ce10dfcca3e303fb1bc60208bd0f3
1 task hello {
2   String pattern
3   File in
5   command {
6     egrep '${pattern}' '${in}'
7   }
9   runtime {
10     #docker: "broadinstitute/my_image"
11   }
13   output {
14     Array[String] matches = read_lines(stdout())
15   }
18 workflow wf {
19   call hello