Skip to content

Commit

Permalink
added cutadapt+trim_galore install rule
Browse files Browse the repository at this point in the history
  • Loading branch information
rioualen committed Jul 4, 2017
1 parent 494abd8 commit a42216a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/makefiles/install_tools_and_libs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ SPP_VER=1.11
STAR_VER=2.5.2b
SUBREAD_VER=1.5.2
SWEMBL_VER=3.3.1
TRIM_GALORE_VER=0.4.3

# ================================================================
# General configuration
Expand Down Expand Up @@ -270,6 +271,14 @@ sickle:
make && \
cp sickle $(BIN_DIR)

cutadapt:
cd $(SOURCE_DIR) && \
pip install --user --upgrade cutadapt && \
mv /root/.local/bin/cutadapt $(BIN_DIR) && \
curl -fsSL https://github.com/FelixKrueger/TrimGalore/archive/$(TRIM_GALORE_VER).tar.gz -o trim_galore.tar.gz && \
tar xvzf trim_galore.tar.gz && \
mv TrimGalore-$(TRIM_GALORE_VER)/trim_galore $(BIN_DIR)

# ----------------------------------------------------------------
# Mapping tools
# ----------------------------------------------------------------
Expand Down

0 comments on commit a42216a

Please sign in to comment.