Skip to content

Commit

Permalink
Install htslib and samtools
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosribas committed Aug 24, 2023
1 parent 20aecce commit 67dd4ae
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ RUN apt install -y \
hmmer \
jq \
lftp \
libbz2-dev \
liblzma-dev \
libncurses5-dev \
libncursesw5-dev \
libsqlite3-dev \
libssl1.1 \
libxml2-utils \
Expand All @@ -45,6 +49,7 @@ RUN apt install -y \
tar \
time \
unzip \
zlib1g-dev\
wget


Expand Down Expand Up @@ -84,6 +89,24 @@ RUN git clone https://github.com/nawrockie/epn-options.git && cd epn-options &&
RUN git clone https://github.com/nawrockie/epn-test.git && cd epn-test && git fetch && git fetch --tags && git checkout ribovore-0.40
RUN git clone https://github.com/nawrockie/ribovore.git && cd ribovore && git fetch && git fetch --tags && git checkout ribovore-0.40

# Install htslib
RUN \
wget https://github.com/samtools/htslib/releases/download/1.18/htslib-1.18.tar.bz2 && \
tar -jxf htslib-1.18.tar.bz2 && \
rm htslib-1.18.tar.bz2 && \
cd htslib-1.18 && \
make && \
make install

# Install samtools
RUN \
wget https://github.com/samtools/samtools/releases/download/1.18/samtools-1.18.tar.bz2 && \
tar jxf samtools-1.18.tar.bz2 && \
rm samtools-1.18.tar.bz2 && \
cd samtools-1.18 && \
make && \
make install

# Install python requirements
ENV RNACENTRAL_IMPORT_PIPELINE "$RNA/rnacentral-import-pipeline"

Expand Down

0 comments on commit 67dd4ae

Please sign in to comment.