-
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.
gwas.sif
: Add samtools, bedtools, liftOver, upgrade others (#222)
* Include samtools package in gwas.sif Fixes #219 * Include samtools package in gwas.sif Fixes #219 * `gwas.sif`: Include samtools, bedtools, liftOver; upgrade others Fixes #219 * rebuilt r.sif container * updated changelog * fix * bump version file * install GWAMA using apt * rebuilt gwas.sif * updated changelog
- Loading branch information
Showing
28 changed files
with
225 additions
and
116 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
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,10 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
VERSION="2.31.1" | ||
wget https://github.com/arq5x/bedtools2/releases/download/v$VERSION/bedtools-$VERSION.tar.gz | ||
tar -zxvf bedtools-$VERSION.tar.gz | ||
cd bedtools2 | ||
make -j4 | ||
cp bin/* /bin | ||
|
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,25 +1,9 @@ | ||
#!/bin/sh | ||
set -euo pipefail | ||
|
||
# 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 | ||
|
||
# build bgen | ||
wget http://code.enkre.net/bgen/tarball/release/bgen.tgz && \ | ||
tar -xvzf bgen.tgz && mv bgen.tgz/* . && \ | ||
./waf configure && \ | ||
./waf -v | ||
# copy binaries | ||
cp build/apps/bgenix /bin && \ | ||
cp build/apps/cat-bgen /bin && \ | ||
cp build/apps/edit-bgen /bin | ||
|
||
# remove python | ||
apt-get purge \ | ||
python3 -y && \ | ||
apt-get autoremove --purge -y | ||
VERSION="1.1.7" | ||
wget http://code.enkre.net/bgen/tarball/release/v$VERSION.tgz && \ | ||
tar -xvzf v$VERSION.tgz && mv v$VERSION/* . && \ | ||
./waf configure --prefix=/usr && \ | ||
./waf install |
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
#!/bin/sh | ||
set -euo pipefail | ||
|
||
wget --no-check-certificate http://www.geenivaramu.ee/tools/GWAMA_v2.2.2.zip && \ | ||
unzip GWAMA_v2.2.2.zip && \ | ||
make && \ | ||
chmod +x GWAMA && \ | ||
cp GWAMA /bin | ||
|
||
apt-get update && apt-get install -y --no-install-recommends \ | ||
gwama=2.2.2+dfsg-2build1 \ | ||
&& \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* |
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 https://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/liftOver | ||
chmod +x liftOver | ||
mv liftOver /bin |
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,8 +1,8 @@ | ||
#!/bin/sh | ||
set -euo pipefail | ||
|
||
wget --no-check-certificate https://s3.amazonaws.com/plink2-assets/alpha3/plink2_linux_x86_64_20220814.zip && \ | ||
unzip -j plink2_linux_x86_64_20220814.zip && \ | ||
rm -rf plink2_linux_x86_64_20220814.zip | ||
wget --no-check-certificate https://s3.amazonaws.com/plink2-assets/alpha5/plink2_linux_x86_64_20240105.zip && \ | ||
unzip -j plink2_linux_x86_64_20240105.zip && \ | ||
rm -rf plink2_linux_x86_64_20240105.zip | ||
|
||
cp plink2 /bin |
Oops, something went wrong.