-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add/update requested gwas.sif binaries (#214)
* add gdb, ldak, snptest; update metal, qctool * update changelog * fixed tests * updated changelog * rebuilt gwas.sif
- Loading branch information
Showing
13 changed files
with
159 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
set -euo pipefail | ||
|
||
wget --no-check-certificate https://dougspeed.com/wp-content/uploads/ldak5.2.linux_.zip | ||
unzip ldak5.2.linux_.zip | ||
cp ldak5.2.linux /bin/ldak |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,29 @@ | ||
#!/bin/sh | ||
set -euo pipefail | ||
|
||
# qctools | ||
wget --no-check-certificate https://www.well.ox.ac.uk/~gav/resources/qctool_v2.0.6-Ubuntu16.04-x86_64.tgz && \ | ||
tar -xvzf qctool_v2.0.6-Ubuntu16.04-x86_64.tgz && \ | ||
rm -rf qctool_v2.0.6-Ubuntu16.04-x86_64.tgz | ||
# python appears to be a build time dependency | ||
apt-get update && apt-get install -y --no-install-recommends python3=3.8.2-0ubuntu2 && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# /usr/bin/python must exist | ||
update-alternatives --install /usr/bin/python python /usr/bin/python3 10 | ||
|
||
# qctools | ||
wget --no-check-certificate https://code.enkre.net/qctool/zip/e5723df2c0c85959/qctool.zip | ||
unzip qctool.zip | ||
cd qctool | ||
./waf configure | ||
./waf | ||
|
||
mv qctool_v2.0.6-Ubuntu16.04-x86_64/* . | ||
cp qctool /bin | ||
# copy binaries to /bin | ||
cp build/release/apps/inthinnerator_v2.2.2 /bin/inthinnerator | ||
cp build/release/apps/hptest_v2.2.2 /bin/hptest | ||
cp build/release/apps/ldbird_v2.2.2 /bin/ldbird | ||
cp build/release/apps/qctool_v2.2.2 /bin/qctool | ||
cp build/release/apps/selfmap_v2.2.2 /bin/selfmap | ||
|
||
chmod 755 /bin/qctool | ||
# remove python | ||
apt-get purge \ | ||
python3 -y && \ | ||
apt-get autoremove --purge -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
set -euo pipefail | ||
|
||
# snptest | ||
wget --no-check-certificate http://www.well.ox.ac.uk/~gav/resources/snptest_v2.5.6_CentOS_Linux7.8-x86_64_dynamic.tgz | ||
tar -xvzf snptest_v2.5.6_CentOS_Linux7.8-x86_64_dynamic.tgz | ||
cp snptest_v2.5.6_CentOS_Linux7.8.2003-x86_64_dynamic/snptest_v2.5.6 /bin/snptest |
Git LFS file not shown
Oops, something went wrong.