Skip to content

Commit

Permalink
Update Dockstore.wdl
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard-Hansen authored Oct 22, 2021
1 parent 160f8bb commit ccdebb1
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions Dockstore.wdl
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
task hello {
String name

command {
echo 'hello ${name}!'
}
output {
File response = stdout()
}
version 1.0
workflow w {
call hello {}
}

workflow test {
meta {
description: "1 2 32342342324234"
}

call hello
task hello {
command { echo "Hello from AGC" }
runtime {
docker: "ubuntu:latest"
}
output { String out = read_string( stdout() ) }
}

0 comments on commit ccdebb1

Please sign in to comment.