Skip to content

Commit 70833a3

Browse files
committed
update reference
1 parent 27ae246 commit 70833a3

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

docs/advanced-topics/batch-services.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Usage
7171

7272
::
7373

74-
consonance run --tool-dockstore-id quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0 --run-descriptor Dockstore.json --flavour <AWS instance-type>
74+
consonance run --tool-dockstore-id quay.io/collaboratory/dockstore-tool-bamstats:1.25-7 --run-descriptor Dockstore.json --flavour <AWS instance-type>
7575

7676
.. discourse::
7777
:topic_identifier: 1545

docs/advanced-topics/best-practices/wdl-best-practices.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This example includes author, email, and description metadata:
3838
}
3939

4040
runtime {
41-
docker: "quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0"
41+
docker: "quay.io/collaboratory/dockstore-tool-bamstats:1.25-7"
4242
memory: mem_gb + "GB"
4343
}
4444

docs/advanced-topics/legacy/legacy-getting-started-with-cwl.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ the JSON config file:
307307
--rm \
308308
--env=TMPDIR=/tmp \
309309
--env=HOME=/var/spool/cwl \
310-
quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0 \
310+
quay.io/collaboratory/dockstore-tool-bamstats:1.25-7 \
311311
bash \
312312
/usr/local/bin/bamstats \
313313
4 \

docs/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ on the underlying host and the temporary directory at
324324
--rm \
325325
--env=TMPDIR=/tmp \
326326
--env=HOME=/var/spool/cwl \
327-
quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0 \
327+
quay.io/collaboratory/dockstore-tool-bamstats:1.25-7 \
328328
bash \
329329
/usr/local/bin/bamstats \
330330
4 \

docs/getting-started/getting-started-with-cwl.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ the JSON config file:
302302
--rm \
303303
--env=TMPDIR=/tmp \
304304
--env=HOME=/var/spool/cwl \
305-
quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0 \
305+
quay.io/collaboratory/dockstore-tool-bamstats:1.25-7 \
306306
bash \
307307
/usr/local/bin/bamstats \
308308
4 \

docs/getting-started/getting-started-with-nextflow.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ information and settings within scopes, such as manifest and docker.
4646
mem_gb = '4'
4747
}
4848

49-
process.container = 'quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0'
49+
process.container = 'quay.io/collaboratory/dockstore-tool-bamstats:1.25-7'
5050
docker {
5151
enabled = true
5252
docker.runOptions = '-u $(id -u):$(id -g)'
@@ -86,7 +86,7 @@ syntax for setting values within a scope.
8686

8787
::
8888

89-
process.container = 'quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0'
89+
process.container = 'quay.io/collaboratory/dockstore-tool-bamstats:1.25-7'
9090

9191
The last scope of the file is the docker scope. This scope does not
9292
define the container that we use, instead it defined other Docker
@@ -216,7 +216,7 @@ with the new file.
216216
mem_gb = '4'
217217
}
218218

219-
process.container = 'quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0'
219+
process.container = 'quay.io/collaboratory/dockstore-tool-bamstats:1.25-7'
220220
docker {
221221
enabled = true
222222
docker.runOptions = '-u $(id -u):$(id -g)'

docs/getting-started/getting-started-with-wdl.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ repository:
7575
}
7676

7777
runtime {
78-
docker: "quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0"
78+
docker: "quay.io/collaboratory/dockstore-tool-bamstats:1.25-7"
7979
memory: mem_gb + "GB"
8080
}
8181
}
@@ -229,7 +229,7 @@ allocated for the task, but we will keep it simple for now.
229229
::
230230

231231
runtime {
232-
docker: "quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0"
232+
docker: "quay.io/collaboratory/dockstore-tool-bamstats:1.25-7"
233233
memory: mem_gb + "GB"
234234
}
235235

docs/launch-with/launch.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ follows:
4949
::
5050

5151
# make a runtime JSON template and fill in desired inputs, outputs, and other parameters
52-
$ dockstore tool convert entry2json --entry quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0 > Dockstore.json
52+
$ dockstore tool convert entry2json --entry quay.io/collaboratory/dockstore-tool-bamstats:1.25-7 > Dockstore.json
5353
$ vim Dockstore.json
5454
# note that the empty JSON config file has been filled with an input file retrieved via http
5555
$ cat Dockstore.json
@@ -66,7 +66,7 @@ follows:
6666
}
6767
}
6868
# run it locally with the Dockstore CLI
69-
$ dockstore tool launch --entry quay.io/collaboratory/dockstore-tool-bamstats:1.25-6_1.0 --json Dockstore.json
69+
$ dockstore tool launch --entry quay.io/collaboratory/dockstore-tool-bamstats:1.25-7 --json Dockstore.json
7070

7171
This information is also provided in the "Launch With" section of every
7272
tool.

0 commit comments

Comments
 (0)