Skip to content

Commit

Permalink
update plink binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
espenhgn committed May 6, 2024
1 parent 295c6b1 commit f38ff1c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/dockerfiles/mixer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY /scripts/install_mambaforge.sh .
RUN chmod +x install_mambaforge.sh && \
bash install_mambaforge.sh

RUN mamba install python=3.10 \
RUN mamba install python=3.10.14 \
jupyterlab=4.0.7 \
matplotlib=3.7.3 \
matplotlib-venn=0.11.9 \
Expand Down
6 changes: 3 additions & 3 deletions src/scripts/install_plink.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -euo pipefail

# plink
wget --no-check-certificate https://s3.amazonaws.com/plink1-assets/plink_linux_x86_64_20200616.zip && \
unzip -j plink_linux_x86_64_20200616.zip && \
rm -rf plink_linux_x86_64_20200616.zip
wget --no-check-certificate https://s3.amazonaws.com/plink1-assets/plink_linux_x86_64_20231211.zip && \
unzip -j plink_linux_x86_64_20231211.zip && \
rm -rf plink_linux_x86_64_20231211.zip
cp plink /bin
6 changes: 3 additions & 3 deletions src/scripts/install_plink2.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/sh
set -euo pipefail

wget --no-check-certificate https://s3.amazonaws.com/plink2-assets/alpha2/plink2_linux_x86_64.zip && \
unzip -j plink2_linux_x86_64.zip && \
rm -rf plink2_linux_x86_64.zip
wget --no-check-certificate https://s3.amazonaws.com/plink2-assets/plink2_linux_x86_64_20240504.zip && \
unzip -j plink2_linux_x86_64_20240504.zip && \
rm -rf plink2_linux_x86_64_20240504.zip

cp plink2 /bin

0 comments on commit f38ff1c

Please sign in to comment.