forked from DockstoreTestUser2/workflow-dockstore-yml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InvalidSnapshot.wdl
95 lines (85 loc) · 1.66 KB
/
InvalidSnapshot.wdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
version 1.0
workflow myWorkflow {
String? docker_image = "quay.io/ucsc_cgl/verifybamid:1.3.0"
call taglessDocker1
call taglessDocker2
call latestDocker1
call latestDocker2
call latestDocker3
call parmeterizedDocker
call versionedDocker
call digestDocker
}
task taglessDocker1 {
command {
echo "hello world"
}
output {
String out = read_string(stdout())
}
runtime {
docker: "katetran/dockstore-tool-helloworld1"
}
}
task taglessDocker2 {
command {
echo "hello world"
}
output {
String out = read_string(stdout())
}
runtime {
docker: "katetran/dockstore-tool-helloworld2"
}
}
task parmeterizedDocker {
input {
String docker_image
}
command {
echo "hello world"
}
runtime {
docker: docker_image
}
}
task latestDocker1 {
command {
echo "hello world"
}
runtime {
docker: "katetran/dockstore-tool-helloworld1:latest"
}
}
task latestDocker2 {
command {
echo "hello world"
}
runtime {
docker: "katetran/dockstore-tool-helloworld2:latest"
}
}
task latestDocker3 {
command {
echo "hello world"
}
runtime {
docker: "katetran/dockstore-tool-helloworld3:latest"
}
}
task versionedDocker {
command {
echo "hello world"
}
runtime {
docker: "katetran/dockstore-tool-helloworld:1"
}
}
task digestDocker {
command {
echo "hello world"
}
runtime {
docker: "katetran/dockstore-tool-helloworld@sha256:0484449b6bdd6e39a34f630a86e18253f6b88899d64faa652c926e90001c84d4"
}
}