Skip to content

Commit 8dfd0b6

Browse files
committed
Version bump to 1.0.9
1 parent f119707 commit 8dfd0b6

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

Dockerfile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Dockerfile for tensorQTL
2-
FROM nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04
2+
# https://gitlab.com/nvidia/container-images/cuda/blob/master/doc/unsupported-tags.md
3+
FROM nvidia/cuda:12.1.1-cudnn8-runtime-ubuntu22.04
34
MAINTAINER Francois Aguet
45

56
RUN apt-get update && apt-get install -y software-properties-common && \
@@ -27,15 +28,15 @@ RUN apt-get update && apt-get install -y software-properties-common && \
2728

2829
# htslib
2930
RUN cd /opt && \
30-
wget --no-check-certificate https://github.com/samtools/htslib/releases/download/1.17/htslib-1.17.tar.bz2 && \
31-
tar -xf htslib-1.17.tar.bz2 && rm htslib-1.17.tar.bz2 && cd htslib-1.17 && \
31+
wget --no-check-certificate https://github.com/samtools/htslib/releases/download/1.19/htslib-1.19.tar.bz2 && \
32+
tar -xf htslib-1.19.tar.bz2 && rm htslib-1.19.tar.bz2 && cd htslib-1.19 && \
3233
./configure --enable-libcurl --enable-s3 --enable-plugins --enable-gcs && \
3334
make && make install && make clean
3435

3536
# bcftools
3637
RUN cd /opt && \
37-
wget --no-check-certificate https://github.com/samtools/bcftools/releases/download/1.17/bcftools-1.17.tar.bz2 && \
38-
tar -xf bcftools-1.17.tar.bz2 && rm bcftools-1.17.tar.bz2 && cd bcftools-1.17 && \
38+
wget --no-check-certificate https://github.com/samtools/bcftools/releases/download/1.19/bcftools-1.19.tar.bz2 && \
39+
tar -xf bcftools-1.19.tar.bz2 && rm bcftools-1.19.tar.bz2 && cd bcftools-1.19 && \
3940
./configure --with-htslib=system && make && make install && make clean
4041

4142
# install R
@@ -50,7 +51,7 @@ RUN Rscript -e 'if (!requireNamespace("BiocManager", quietly = TRUE)) {install.p
5051
RUN pip3 install --upgrade pip setuptools
5152
RUN pip3 install numpy pandas scipy
5253
RUN pip3 install pandas-plink ipython jupyter matplotlib pyarrow torch rpy2 gcsfs Pgenlib>=0.90.1
53-
RUN pip3 install tensorqtl==1.0.8
54+
RUN pip3 install tensorqtl==1.0.9
5455

5556
# RUN cd /opt && \
5657
# wget https://github.com/broadinstitute/tensorqtl/archive/v1.0.8.tar.gz && \

tensorqtl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.0.8"
1+
__version__ = "1.0.9"
22
from .tensorqtl import *

0 commit comments

Comments
 (0)