Skip to content

Commit

Permalink
Added Salmon
Browse files Browse the repository at this point in the history
  • Loading branch information
rkalescky committed Feb 7, 2023
1 parent 7058615 commit bd3ce4f
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 6 deletions.
50 changes: 45 additions & 5 deletions biostats_mcgee/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,38 @@ LABEL maintainer="Robert Kalescky <[email protected]>"
ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update &&\
apt-get install -y\
libz-dev\
default-jre\
apt-get remove -y libcurl4 &&\
apt-get upgrade -y &&\
apt-get install -y --no-install-recommends\
apt-transport-https\
autoconf\
ca-certificates\
cmake\
curl\
default-jdk\
python3-pip

default-jre\
g++\
gcc\
git\
git-lfs\
gnupg\
libboost-all-dev\
libbz2-dev\
libcereal-dev\
libcurl4-openssl-dev\
libgff-dev\
libjemalloc-dev\
liblzma-dev\
libtbb-dev\
libz-dev\
make\
ninja-build\
python3-pip\
software-properties-common\
unzip\
wget\
zlib1g-dev

# FastQC
RUN git clone --depth 1 --branch v0.11.9\
https://github.com/s-andrews/FastQC.git /opt/FastQC &&\
Expand Down Expand Up @@ -47,3 +73,17 @@ RUN git clone --depth 1 --branch v1.3.3\
COPY install_packages.R /
RUN Rscript /install_packages.R

# GATK4
RUN git clone --depth 1 --branch 4.2.6.1\
https://github.com/broadinstitute/gatk.git /opt/gatk &&\
cd /opt/gatk &&\
./gradlew installAll

# Salmon
RUN git clone --depth 1 --branch v1.9.0\
https://github.com/COMBINE-lab/salmon.git /opt/salmon &&\
mkdir /opt/salmon/build &&\
cd /opt/salmon/build &&\
cmake .. &&\
make install

2 changes: 1 addition & 1 deletion biostats_mcgee/biostats.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
load("singularity")

local img_name = 'biostats_latest-2023-01-27-60654e0170ff.simg'
local img_name = 'biostats_latest-2023-02-07-858e2914ccfc.sif'
local img_directory = '/hpc/applications/containers/'
local img_path = pathJoin(img_directory, img_name)

Expand Down

0 comments on commit bd3ce4f

Please sign in to comment.