Skip to content

Commit 14a2929

Browse files
committed
remove salmon and add STAR
1 parent 12fdf39 commit 14a2929

1 file changed

Lines changed: 6 additions & 15 deletions

File tree

docker/Dockerfile

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -133,21 +133,12 @@ RUN apt-get update && apt-get install -y cmake && \
133133
apt-get clean && rm -rf /var/lib/apt/lists/* && \
134134
bamtools --version
135135

136-
# Install salmon
137-
RUN wget https://github.com/COMBINE-lab/salmon/releases/download/v1.10.0/salmon-1.10.0_linux_x86_64.tar.gz && \
138-
tar -xzf salmon-1.10.0_linux_x86_64.tar.gz && \
139-
cp -r salmon-latest_linux_x86_64/bin/* /usr/local/bin/ && \
140-
cp -r salmon-latest_linux_x86_64/lib/* /usr/local/lib/ && \
141-
rm -rf salmon-1.10.1* && \
142-
salmon --version
143-
144-
145-
# # Install STAR with required dependencies
146-
# RUN wget https://github.com/alexdobin/STAR/releases/download/2.7.11b/STAR_2.7.11b.zip && \
147-
# unzip STAR_2.7.11b.zip && \
148-
# cp STAR_2.7.11b/Linux_x86_64/STAR* /usr/local/bin/ && \
149-
# rm -rf STAR_2.7.11b* && \
150-
# STAR --version
136+
# Install STAR with required dependencies
137+
RUN wget https://github.com/alexdobin/STAR/releases/download/2.7.11b/STAR_2.7.11b.zip && \
138+
unzip STAR_2.7.11b.zip && \
139+
cp STAR_2.7.11b/Linux_x86_64/STAR* /usr/local/bin/ && \
140+
rm -rf STAR_2.7.11b* && \
141+
STAR --version
151142

152143
# install R packages
153144
RUN Rscript -e 'install.packages("BiocManager", repos = "https://cloud.r-project.org")' \

0 commit comments

Comments
 (0)