repo.or.cz
/
GalaxyCodeBases.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
modified: myjupyterlab.sh
[GalaxyCodeBases.git]
/
etc
/
gatk-wdl
/
fm2
/
hello.wdl
blob
4e193e575a6ce10dfcca3e303fb1bc60208bd0f3
1
task hello {
2
String pattern
3
File in
4
5
command {
6
egrep '${pattern}' '${in}'
7
}
8
9
runtime {
10
#docker: "broadinstitute/my_image"
11
}
12
13
output {
14
Array[String] matches = read_lines(stdout())
15
}
16
}
17
18
workflow wf {
19
call hello
20
}
21