Skip to content

Commit

Permalink
Fix Docker build/PLINK downloads (#28)
Browse files Browse the repository at this point in the history
Fixes #27
  • Loading branch information
espenhgn authored May 21, 2024
1 parent 334f3f2 commit 81cb526
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Updated

- Updated PLINK2.0 (20240516)
- Added installation information to the README.md file.
- Mambaforge for Python 3.10.14 environment (was Python 3.8)
- Updated PLINK1.9 (20231211) and PLINK2.0 (20231211) versions (and revised corresponding syntax in mixer_simu example)
Expand Down
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/plink2_linux_x86_64_20240504.zip && \
unzip -j plink2_linux_x86_64_20240504.zip && \
rm -rf plink2_linux_x86_64_20240504.zip
wget --no-check-certificate https://s3.amazonaws.com/plink2-assets/plink2_linux_x86_64_20240516.zip && \
unzip -j plink2_linux_x86_64_20240516.zip && \
rm -rf plink2_linux_x86_64_20240516.zip

cp plink2 /bin

0 comments on commit 81cb526

Please sign in to comment.