Skip to content

Commit

Permalink
Update OSS docs for 1.8.0 release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 698487719
  • Loading branch information
kishwarshafin authored and copybara-github committed Nov 20, 2024
1 parent 5e9a8ae commit 90dcb88
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/problem_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ assignees: ''

---

**Have you checked the FAQ? https://github.com/google/deepvariant/blob/r1.7/docs/FAQ.md**:
**Have you checked the FAQ? https://github.com/google/deepvariant/blob/r1.8/docs/FAQ.md**:

**Describe the issue:**
(A clear and concise description of what the issue is.)
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ assignees: ''

---

**Have you checked the FAQ? https://github.com/google/deepvariant/blob/r1.7/docs/FAQ.md**:
**Have you checked the FAQ? https://github.com/google/deepvariant/blob/r1.8/docs/FAQ.md**:


4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="docs/images/dv_logo.png" width=50% height=50%>

[![release](https://img.shields.io/badge/release-v1.7-green?logo=github)](https://github.com/google/deepvariant/releases)
[![release](https://img.shields.io/badge/release-v1.8-green?logo=github)](https://github.com/google/deepvariant/releases)
[![announcements](https://img.shields.io/badge/announcements-blue)](https://groups.google.com/d/forum/deepvariant-announcements)
[![blog](https://img.shields.io/badge/blog-orange)](https://goo.gl/deepvariant)

Expand Down Expand Up @@ -71,7 +71,7 @@ Please also note:
We recommend using our Docker solution. The command will look like this:

```
BIN_VERSION="1.7.0"
BIN_VERSION="1.8.0"
docker run \
-v "YOUR_INPUT_DIR":"/input" \
-v "YOUR_OUTPUT_DIR:/output" \
Expand Down
6 changes: 3 additions & 3 deletions docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ container, you can `ls` inside the container. For example, using the setup shown
in the README and looking inside the `/input` volume:

```
BIN_VERSION="1.7.0"
BIN_VERSION="1.8.0"
docker run \
-v "YOUR_INPUT_DIR":"/input" \
-v "YOUR_OUTPUT_DIR:/output" \
Expand All @@ -171,7 +171,7 @@ and outside the Docker container.
```
echo $HOME # see what your home directory is first.
ls $HOME
BIN_VERSION="1.7.0"
BIN_VERSION="1.8.0"
sudo docker run \
-v "${HOME}":"${HOME}" \
google/deepvariant:"${BIN_VERSION}" \
Expand All @@ -184,7 +184,7 @@ Since the DeepVariant v0.9 release, we recommend
"[Best practices for multi-sample variant calling with DeepVariant](https://github.com/google/deepvariant/blob/r0.9/docs/trio-merge-case-study.md)".

For specifically calling on duos or trios, we introduced
[DeepTrio](https://github.com/google/deepvariant/blob/r1.7/docs/deeptrio-details.md)
[DeepTrio](https://github.com/google/deepvariant/blob/r1.8/docs/deeptrio-details.md)
in v1.1.

## Why am I seeing "CUDA_ERROR_NOT_INITIALIZED: initialization error" while running on GPU?
Expand Down
2 changes: 1 addition & 1 deletion docs/runtime-by-region.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ make_examples runtime by region data. Continuing from the quick start, it looks
like this:

```bash
BIN_VERSION="1.7.0" # Only available in v1.1+.
BIN_VERSION="1.8.0" # Only available in v1.1+.
docker run \
-v "INPUT_DIR":"/input" \
-v "OUTPUT_DIR:/output" \
Expand Down
2 changes: 1 addition & 1 deletion docs/show-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Once you have a make_examples output tfrecord file, then you can run
INPUT_DIR="${PWD}/quickstart-testdata"
OUTPUT_DIR="${PWD}/quickstart-output"

BIN_VERSION="1.7.0" # show_examples is available only in version 1.0.0 and later.
BIN_VERSION="1.8.0" # show_examples is available only in version 1.0.0 and later.
sudo docker run \
-v "${INPUT_DIR}":"/input" \
-v "${OUTPUT_DIR}":"/output" \
Expand Down

0 comments on commit 90dcb88

Please sign in to comment.