You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/Dockerfile
+11-10Lines changed: 11 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
FROM ubuntu:18.04
2
2
3
3
4
-
ENV RNACOCKTAIL_VERSION 0.3.0
4
+
ENV RNACOCKTAIL_VERSION 0.3.1
5
5
ENV R_VERSION 3.6.1-3bionic
6
6
ENV DEBIAN_FRONTEND noninteractive
7
7
ENV DEBCONF_NONINTERACTIVE_SEEN true
@@ -16,22 +16,22 @@ ENV OASES_VERSION 0.2.09
16
16
ENV VELVET_VERSION 1.2.10
17
17
ENV SUBREAD_VERSION 2.0.0
18
18
ENV LORDEC_VERSION 0.9
19
-
ENV STAR_VERSION 2.7.0f
19
+
ENV STAR_VERSION 2.7.2b
20
20
ENV PICARD_VERSION 2.19.0
21
21
ENV HTSLIB_VERSION 1.9
22
22
ENV GIREMI_VERSION 0.2.1
23
23
ENV BIOPYTHON_VERSION 1.74
24
24
ENV OPENPYXL_VERSION 2.6.4
25
25
ENV XLRD_VERSION 1.1.0
26
-
ENV BOWTIE_VERSION 1.2.2
27
-
ENV BOWTIE2_VERSION 2.2.9
26
+
ENV BOWTIE_VERSION 1.2.3
27
+
ENV BOWTIE2_VERSION 2.3.5.1
28
28
ENV BWA_VERSION 0.7.17
29
29
ENV SRA_VERSION 2.9.6
30
30
ENV COREUTILS_VERSION 8.27
31
-
ENV PIGZ_VERSION 2.3.1
31
+
ENV PIGZ_VERSION 2.4
32
32
ENV GMAP_VERSION 2019-09-12
33
33
ENV BBMAP_VERSION 38.44
34
-
ENV FUSIONCATCHER_VERSION 1.10
34
+
ENV FUSIONCATCHER_VERSION 1.20
35
35
ENV GFFREAD_VERSION 0.11.5
36
36
ENV IDPFUSION_VERSION 1.1.1
37
37
ENV GATK_VERSION 4.1.4.0
@@ -94,8 +94,8 @@ RUN pip install pybedtools==${PYBEDTOOLS_VERSION} pysam==${PYSAM_VERSION} biopyt
94
94
RUN wget https://sourceforge.net/projects/bowtie-bio/files/bowtie/${BOWTIE_VERSION}/bowtie-${BOWTIE_VERSION}-linux-x86_64.zip -O /opt/bowtie-${BOWTIE_VERSION}-linux-x86_64.zip
95
95
RUN cd /opt && unzip bowtie-${BOWTIE_VERSION}-linux-x86_64.zip && cp -p /opt/bowtie-${BOWTIE_VERSION}-linux-x86_64/bowtie* /usr/local/bin && cd /opt && rm -rf bowtie*
96
96
97
-
RUN wget https://sourceforge.net/projects/bowtie-bio/files/bowtie2/${BOWTIE2_VERSION}/bowtie2-${BOWTIE2_VERSION}-linux-x86_64.zip/download -O /opt/bowtie2-${BOWTIE2_VERSION}-linux-x86_64.zip
98
-
RUN cd /opt && unzip bowtie2-${BOWTIE2_VERSION}-linux-x86_64.zip && cp -p /opt/bowtie2-${BOWTIE2_VERSION}/bowtie2* /usr/local/bin && cd /opt && rm -rf bowtie2*
97
+
RUN wget https://sourceforge.net/projects/bowtie-bio/files/bowtie2/${BOWTIE2_VERSION}/bowtie2-${BOWTIE2_VERSION}-linux-x86_64.zip -O /opt/bowtie2-${BOWTIE2_VERSION}-linux-x86_64.zip
98
+
RUN cd /opt && unzip bowtie2-${BOWTIE2_VERSION}-linux-x86_64.zip && cp -p /opt/bowtie2-${BOWTIE2_VERSION}-linux-x86_64/bowtie2* /usr/local/bin && cd /opt && rm -rf bowtie2*
99
99
100
100
RUN wget https://sourceforge.net/projects/bio-bwa/files/bwa-${BWA_VERSION}.tar.bz2/download -O /opt/bwa-${BWA_VERSION}.tar.bz2
101
101
RUN cd /opt && tar xjf bwa-${BWA_VERSION}.tar.bz2 && cd bwa-${BWA_VERSION} && make && cp -p /opt/bwa-${BWA_VERSION}/bwa /usr/local/bin && cd /opt && rm -rf bwa*
@@ -131,7 +131,8 @@ RUN cd /opt && tar -xzvf BBMap_${BBMAP_VERSION}.tar.gz
<p>RNACocktail is a python package and can be installed using <code>pip</code>. To install type <code>pip install https://github.com/bioinform/RNACocktail/archive/v0.3.0.tar.gz</code>. The current version
390
-
of RNACocktail is v0.3.0. In general, the install source would be https://github.com/bioinform/RNACocktail/archive/version.tar.gz</p>
389
+
<p>RNACocktail is a Python 2.7 package and can be installed using <code>pip</code>. To install type <code>pip install https://github.com/bioinform/RNACocktail/archive/v0.3.1.tar.gz</code> (using Python 2.7). The current version
390
+
of RNACocktail is v0.3.1. In general, the install source would be https://github.com/bioinform/RNACocktail/archive/version.tar.gz</p>
0 commit comments