Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions images.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ cellregmap = '0.0.3'
cpg_hail = '0.2.134.cpg1'
cpg_hail_gcloud = '0.2.134.cpg1'
clinvarbitration = '1.5.1'
deepvariant = '1.9.0'
dragmap = '1.3.0-tokenizer-next-fix'
echtvar = 'v0.2.1'
exomiser = '13.3.0'
Expand Down
9 changes: 9 additions & 0 deletions images/deepvariant/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Use official Google DeepVariant image as base
ARG VERSION=1.9.0

# Choose CPU or GPU variant
FROM google/deepvariant:${VERSION} as deepvariant_base

# Final image with DeepVariant + additional tools
FROM deepvariant_base
LABEL maintainer="https://github.com/google/deepvariant/issues"
9 changes: 9 additions & 0 deletions images/deepvariant_pangenome_aware/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Use official Google DeepVariant image as base
ARG VERSION=1.9.0

# Choose CPU or GPU variant
FROM google/deepvariant:pangenome_aware_deepvariant-${VERSION} as deepvariant_base

# Final image with DeepVariant + additional tools
FROM deepvariant_base
LABEL maintainer="https://github.com/google/deepvariant/issues"
Loading