Skip to content

Commit

Permalink
Add hybrid to list of sequencing technologies in README.
Browse files Browse the repository at this point in the history
Also update badge to v1.0.0 in README.

PiperOrigin-RevId: 329818160
  • Loading branch information
MariaNattestad authored and copybara-github committed Sep 3, 2020
1 parent 2aeb2f9 commit d536291
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DeepVariant

[![release](https://img.shields.io/badge/release-v0.10.0-green?logo=github)](https://github.com/google/deepvariant/releases)
[![release](https://img.shields.io/badge/release-v1.0.0-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 All @@ -27,6 +27,8 @@ DeepVariant supports:
[PacBio case study](docs/deepvariant-pacbio-model-case-study.md).
* ONT long-read data by using
[PEPPER-DeepVariant](https://github.com/kishwarshafin/pepper/blob/master/docs/PEPPER_variant_calling.md).
* Hybrid PacBio HiFi + Illumina WGS, see the
[hybrid case study](docs/deepvariant-hybrid-case-study.md).

## How to run

Expand All @@ -39,7 +41,7 @@ docker run \
-v "YOUR_OUTPUT_DIR:/output" \
google/deepvariant:"${BIN_VERSION}" \
/opt/deepvariant/bin/run_deepvariant \
--model_type=WGS \ **Replace this string with exactly one of the following [WGS,WES,PACBIO]**
--model_type=WGS \ **Replace this string with exactly one of the following [WGS,WES,PACBIO,HYBRID_PACBIO_ILLUMINA]**
--ref=/input/YOUR_REF \
--reads=/input/YOUR_BAM \
--output_vcf=/output/YOUR_OUTPUT_VCF \
Expand Down
4 changes: 2 additions & 2 deletions docs/deepvariant-quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ sudo docker run \
-v "${OUTPUT_DIR}":"/output" \
google/deepvariant:"${BIN_VERSION}" \
/opt/deepvariant/bin/run_deepvariant \
--model_type=WGS \ **Replace this string with exactly one of the following [WGS,WES,PACBIO]**
--model_type=WGS \ **Replace this string with exactly one of the following [WGS,WES,PACBIO,HYBRID_PACBIO_ILLUMINA]**
--ref=/input/ucsc.hg19.chr20.unittest.fasta \
--reads=/input/NA12878_S1.chr20.10_10p1mb.bam \
--regions "chr20:10,000,000-10,010,000" \
Expand Down Expand Up @@ -192,7 +192,7 @@ singularity pull docker://google/deepvariant:"${BIN_VERSION}"
singularity run -B /usr/lib/locale/:/usr/lib/locale/ \
docker://google/deepvariant:"${BIN_VERSION}" \
/opt/deepvariant/bin/run_deepvariant \
--model_type=WGS \ **Replace this string with exactly one of the following [WGS,WES,PACBIO]**
--model_type=WGS \ **Replace this string with exactly one of the following [WGS,WES,PACBIO,HYBRID_PACBIO_ILLUMINA]**
--ref="${INPUT_DIR}"/ucsc.hg19.chr20.unittest.fasta \
--reads="${INPUT_DIR}"/NA12878_S1.chr20.10_10p1mb.bam \
--regions "chr20:10,000,000-10,010,000" \
Expand Down

0 comments on commit d536291

Please sign in to comment.