Skip to content

Commit f575751

Browse files
committed
Update all case studies for v1.6.1 release
PiperOrigin-RevId: 616265600
1 parent 3d7498c commit f575751

22 files changed

+33
-33
lines changed

.github/ISSUE_TEMPLATE/problem_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ assignees: ''
77

88
---
99

10-
**Have you checked the FAQ? https://github.com/google/deepvariant/blob/r1.6/docs/FAQ.md**:
10+
**Have you checked the FAQ? https://github.com/google/deepvariant/blob/r1.6.1/docs/FAQ.md**:
1111

1212
**Describe the issue:**
1313
(A clear and concise description of what the issue is.)

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ assignees: ''
77

88
---
99

10-
**Have you checked the FAQ? https://github.com/google/deepvariant/blob/r1.6/docs/FAQ.md**:
10+
**Have you checked the FAQ? https://github.com/google/deepvariant/blob/r1.6.1/docs/FAQ.md**:
1111

1212

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="docs/images/dv_logo.png" width=50% height=50%>
22

3-
[![release](https://img.shields.io/badge/release-v1.6.0-green?logo=github)](https://github.com/google/deepvariant/releases)
3+
[![release](https://img.shields.io/badge/release-v1.6.1-green?logo=github)](https://github.com/google/deepvariant/releases)
44
[![announcements](https://img.shields.io/badge/announcements-blue)](https://groups.google.com/d/forum/deepvariant-announcements)
55
[![blog](https://img.shields.io/badge/blog-orange)](https://goo.gl/deepvariant)
66

@@ -70,7 +70,7 @@ Please also note:
7070
We recommend using our Docker solution. The command will look like this:
7171

7272
```
73-
BIN_VERSION="1.6.0"
73+
BIN_VERSION="1.6.1"
7474
docker run \
7575
-v "YOUR_INPUT_DIR":"/input" \
7676
-v "YOUR_OUTPUT_DIR:/output" \

docs/FAQ.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ container, you can `ls` inside the container. For example, using the setup shown
143143
in the README and looking inside the `/input` volume:
144144

145145
```
146-
BIN_VERSION="1.6.0"
146+
BIN_VERSION="1.6.1"
147147
docker run \
148148
-v "YOUR_INPUT_DIR":"/input" \
149149
-v "YOUR_OUTPUT_DIR:/output" \
@@ -158,7 +158,7 @@ and outside the Docker container.
158158
```
159159
echo $HOME # see what your home directory is first.
160160
ls $HOME
161-
BIN_VERSION="1.6.0"
161+
BIN_VERSION="1.6.1"
162162
sudo docker run \
163163
-v "${HOME}":"${HOME}" \
164164
google/deepvariant:"${BIN_VERSION}" \
@@ -171,7 +171,7 @@ Since the DeepVariant v0.9 release, we recommend
171171
"[Best practices for multi-sample variant calling with DeepVariant](https://github.com/google/deepvariant/blob/r0.9/docs/trio-merge-case-study.md)".
172172

173173
For specifically calling on duos or trios, we introduced
174-
[DeepTrio](https://github.com/google/deepvariant/blob/r1.6/docs/deeptrio-details.md)
174+
[DeepTrio](https://github.com/google/deepvariant/blob/r1.6.1/docs/deeptrio-details.md)
175175
in v1.1.
176176

177177
## Why am I seeing "CUDA_ERROR_NOT_INITIALIZED: initialization error" while running on GPU?

docs/deeptrio-pacbio-case-study.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ is run as a separate command.
8585
mkdir -p output
8686
mkdir -p output/intermediate_results_dir
8787

88-
BIN_VERSION="1.6.0"
88+
BIN_VERSION="1.6.1"
8989

9090
sudo apt -y update
9191
sudo apt-get -y install docker.io

docs/deeptrio-quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ documentation on how to build.
3232
### Get Docker image
3333

3434
```bash
35-
BIN_VERSION="1.6.0"
35+
BIN_VERSION="1.6.1"
3636

3737
sudo apt -y update
3838
sudo apt-get -y install docker.io
@@ -341,7 +341,7 @@ INDEL PASS 2 2 0 2 0 0
341341
[BAM]: http://genome.sph.umich.edu/wiki/BAM
342342
[BWA]: https://academic.oup.com/bioinformatics/article/25/14/1754/225615/Fast-and-accurate-short-read-alignment-with
343343
[docker build]: https://docs.docker.com/engine/reference/commandline/build/
344-
[Dockerfile]: https://github.com/google/deepvariant/blob/r1.6/Dockerfile.deeptrio
344+
[Dockerfile]: https://github.com/google/deepvariant/blob/r1.6.1/Dockerfile.deeptrio
345345
[FASTA]: https://en.wikipedia.org/wiki/FASTA_format
346346
[VCF]: https://samtools.github.io/hts-specs/VCFv4.3.pdf
347347
[run_deeptrio.py]: ../scripts/run_deeptrio.py

docs/deeptrio-wgs-case-study.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ command.
8282
mkdir -p output
8383
mkdir -p output/intermediate_results_dir
8484

85-
BIN_VERSION="1.6.0"
85+
BIN_VERSION="1.6.1"
8686

8787
sudo docker pull google/deepvariant:deeptrio-"${BIN_VERSION}"
8888

docs/deepvariant-case-study.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ DeepVariant pipeline consists of 3 steps: `make_examples`, `call_variants`, and
6767
mkdir -p output
6868
mkdir -p output/intermediate_results_dir
6969

70-
BIN_VERSION="1.6.0"
70+
BIN_VERSION="1.6.1"
7171

7272
sudo docker run \
7373
-v "${PWD}/input":"/input" \

docs/deepvariant-complete-g400-case-study.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ On a CPU-only machine:
5252
mkdir -p output
5353
mkdir -p output/intermediate_results_dir
5454

55-
BIN_VERSION="1.6.0rc4"
55+
BIN_VERSION="1.6.1"
5656

5757
sudo docker run \
5858
-v "${PWD}/input":"/input" \

docs/deepvariant-complete-t7-case-study.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ On a CPU-only machine:
5252
mkdir -p output
5353
mkdir -p output/intermediate_results_dir
5454

55-
BIN_VERSION="1.6.0"
55+
BIN_VERSION="1.6.1"
5656

5757
sudo docker run \
5858
-v "${PWD}/input":"/input" \

0 commit comments

Comments
 (0)