TomHarrop/honeybee-genotype-pipeline:honeybee_genotype_pipeline_v0.0.9
$ singularity pull shub://TomHarrop/honeybee-genotype-pipeline:honeybee_genotype_pipeline_v0.0.9
Singularity Recipe
Bootstrap: docker
From: ubuntu:19.10
%help
Container for honeybee-genotype-pipeline v0.0.9
https://github.com/tomharrop/honeybee-genotype-pipeline
bbmap 38.73
bwa 0.7.17-r1188
freebayes 1.3.2
python 3.7.5
R 3.6.1 with data.table 1.12.8 and ggplot2 3.3.0
samtools 1.9 and bcftools 1.9 using htslib 1.9
vcflib 1.0.1
vcftools 0.1.16
%labels
MAINTAINER "Tom Harrop"
%runscript
exec /usr/local/bin/honeybee_genotype_pipeline "$@"
%environment
export PATH="${PATH}:/vcflib/bin:/freebayes/bin:/freebayes/scripts"
export LC_ALL=C
%post
export DEBIAN_FRONTEND=noninteractive
(
. /etc/os-release
cat << _EOF_ > mirror.txt
deb mirror://mirrors.ubuntu.com/mirrors.txt ${UBUNTU_CODENAME} main restricted universe multiverse
deb mirror://mirrors.ubuntu.com/mirrors.txt ${UBUNTU_CODENAME}-updates main restricted universe multiverse
deb mirror://mirrors.ubuntu.com/mirrors.txt ${UBUNTU_CODENAME}-backports main restricted universe multiverse
deb mirror://mirrors.ubuntu.com/mirrors.txt ${UBUNTU_CODENAME}-security main restricted universe multiverse
_EOF_
mv /etc/apt/sources.list /etc/apt/sources.list.bak
cat mirror.txt /etc/apt/sources.list.bak > /etc/apt/sources.list
)
# packages
apt-get update
apt-get install -y \
bc \
build-essential \
bwa \
default-jre-headless \
git \
libbz2-dev \
liblzma-dev \
libtabixpp-dev \
parallel \
python \
python3 \
python3-pip \
r-cran-cairo \
r-cran-data.table \
r-cran-ggplot2 \
samtools \
tabix \
wget \
zlib1g-dev
# bbmap
wget -O "bbmap.tar.gz" \
https://sourceforge.net/projects/bbmap/files/BBMap_38.73.tar.gz
mkdir bbmap
tar -zxf bbmap.tar.gz \
-C bbmap \
--strip-components 1
cp -r bbmap/resources/* /
cp -r bbmap/* /usr/local/bin/
rm -rf bbmap.tar.gz bbmap
# vcflib
git clone \
https://github.com/vcflib/vcflib.git
cd vcflib || exit 1
git checkout tags/v1.0.1
git submodule update --init --recursive
make openmp
cd .. || exit 1
# freebayes
git clone \
https://github.com/ekg/freebayes.git
cd freebayes || exit 1
git checkout tags/v1.3.2
git submodule update --init --recursive
make
# fix freebayes scripts
sed \
's/..\/vcflib\/scripts\/vcffirstheader/vcffirstheader/g' \
scripts/freebayes-parallel \
| sed \
's/..\/vcflib\/bin\/vcfstreamsort/vcfstreamsort/g' \
> scripts/freebayes-parallel.new
rm scripts/freebayes-parallel
mv scripts/freebayes-parallel.new scripts/freebayes-parallel
chmod 755 scripts/freebayes-parallel
cd .. || exit 1
# vcftools
mkdir vcftools
wget \
-O "vcftools.tar.gz" \
--no-check-certificate \
https://github.com/vcftools/vcftools/releases/download/v0.1.16/vcftools-0.1.16.tar.gz
tar -zxf vcftools.tar.gz \
-C vcftools \
--strip-components 2
cd vcftools || exit 1
./configure
make
make install
cd .. || exit 1
rm -rf vcftools vcftools.tar.gz
# install pipeline package
/usr/bin/pip3 \
install \
git+git://github.com/tomharrop/honeybee-genotype-pipeline.git@v0.0.9
Collection
- Name: TomHarrop/honeybee-genotype-pipeline
- License: None
View on Datalad
Metrics
key | value |
---|---|
id | /containers/TomHarrop-honeybee-genotype-pipeline-honeybee_genotype_pipeline_v0.0.9 |
collection name | TomHarrop/honeybee-genotype-pipeline |
branch | master |
tag | honeybee_genotype_pipeline_v0.0.9 |
commit | 55b8d7dd1e108dbba7121144afe1d1726dc181d8 |
version (container hash) | 9beda5d1ef2e3b1c8bea097c4947eafda613a83afb8caebe3454023325604d23 |
build date | 2020-04-08T00:33:12.385Z |
size (MB) | 782.13671875 |
size (bytes) | 820129792 |
SIF | Download URL (please use pull with shub://) |
Datalad URL | View on Datalad |
Singularity Recipe | Singularity Recipe on Datalad |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.