Skip to content

Commit

Permalink
adding hisat2 and subread
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneknapp committed Oct 21, 2024
1 parent d1fbe96 commit b436264
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ RUN apt-get update -qq --yes && \
apt-get install --yes -qq \
libcurl4-openssl-dev > /dev/null

COPY install-mambaforge.bash /tmp/install-mambaforge.bash
RUN chmod 777 /tmp/install-mambaforge.bash
RUN /tmp/install-mambaforge.bash
RUN rm /tmp/install-mambaforge.bash
COPY install-miniforge.bash /tmp/install-miniforge.bash
RUN chmod 777 /tmp/install-miniforge.bash
RUN /tmp/install-miniforge.bash
RUN rm /tmp/install-miniforge.bash

USER ${NB_USER}

Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ dependencies:
- fastqc=0.11.9
- phyml=3.3.20200621
- sra-tools=2.11
# - hisat2=2.2.1
# - subread=2.0.1
- hisat2=2.2.1
- subread=2.0.6
- plink=1.90b6.21

- syncthing==1.18.6
Expand Down
6 changes: 3 additions & 3 deletions install-mambaforge.bash → install-miniforge.bash
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
set -ex

cd $(dirname $0)
MAMBAFORGE_VERSION='24.3.0-0'
MINIFORGE_VERSION='24.7.1-2'

URL="https://github.com/conda-forge/miniforge/releases/download/${MAMBAFORGE_VERSION}/Mambaforge-${MAMBAFORGE_VERSION}-Linux-x86_64.sh"
INSTALLER_PATH=/tmp/mambaforge-installer.sh
URL="https://github.com/conda-forge/miniforge/releases/download/${MINIFORGE_VERSION}/Miniforge3-${MINIFORGE_VERSION}-Linux-x86_64.sh"
INSTALLER_PATH=/tmp/miniforge-installer.sh

wget --quiet $URL -O ${INSTALLER_PATH}
chmod +x ${INSTALLER_PATH}
Expand Down

0 comments on commit b436264

Please sign in to comment.