Skip to content
Snippets Groups Projects
Commit 8370956a authored by Shaman Narayanasamy's avatar Shaman Narayanasamy
Browse files

Docker file update

parent 3f582764
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,6 @@ RUN mkdir -p /home/imp/tmp /home/imp/lib \ ...@@ -58,7 +58,6 @@ RUN mkdir -p /home/imp/tmp /home/imp/lib \
#&& mkdir -p /usr/db/trimmomatic \ #&& mkdir -p /usr/db/trimmomatic \
#&& cp adapters/* /usr/db/trimmomatic/. \ #&& cp adapters/* /usr/db/trimmomatic/. \
&& cd .. && rm -rf *rimmomatic* && cd .. && rm -rf *rimmomatic*
## idba ud ## idba ud
RUN wget http://hku-idba.googlecode.com/files/idba-1.1.1.tar.gz \ RUN wget http://hku-idba.googlecode.com/files/idba-1.1.1.tar.gz \
&& tar -xzf idba-1.1.1.tar.gz \ && tar -xzf idba-1.1.1.tar.gz \
...@@ -82,7 +81,6 @@ RUN wget http://hku-idba.googlecode.com/files/idba-1.1.1.tar.gz \ ...@@ -82,7 +81,6 @@ RUN wget http://hku-idba.googlecode.com/files/idba-1.1.1.tar.gz \
&& make \ && make \
&& mv bwa /usr/bin \ && mv bwa /usr/bin \
&& cd .. && rm -rf bwa* && cd .. && rm -rf bwa*
## htqc toolbox ## htqc toolbox
RUN wget http://downloads.sourceforge.net/project/htqc/htqc-1.91.1-Source.tar.gz \ RUN wget http://downloads.sourceforge.net/project/htqc/htqc-1.91.1-Source.tar.gz \
&& tar -xzf htqc-1.91.1-Source.tar.gz \ && tar -xzf htqc-1.91.1-Source.tar.gz \
...@@ -93,12 +91,6 @@ RUN wget http://downloads.sourceforge.net/project/htqc/htqc-1.91.1-Source.tar.gz ...@@ -93,12 +91,6 @@ RUN wget http://downloads.sourceforge.net/project/htqc/htqc-1.91.1-Source.tar.gz
&& make \ && make \
&& make install \ && make install \
&& cd ../.. && rm -rf htqc* \ && cd ../.. && rm -rf htqc* \
## cufflinks
&& wget http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/cufflinks-2.2.1.Linux_x86_64.tar.gz \
&& tar -xzf cufflinks-2.2.1.Linux_x86_64.tar.gz \
&& cd cufflinks-2.2.1.Linux_x86_64 \
&& cp cuffcompare cuffdiff cufflinks cuffmerge cuffnorm cuffquant gffread gtf_to_sam /usr/bin \
&& cd .. && rm -rf cufflinks* \
## freebayes ## freebayes
&& git clone --recursive git://github.com/ekg/freebayes.git \ && git clone --recursive git://github.com/ekg/freebayes.git \
&& cd freebayes \ && cd freebayes \
...@@ -140,6 +132,11 @@ RUN wget http://www.vicbioinformatics.com/prokka-1.11.tar.gz \ ...@@ -140,6 +132,11 @@ RUN wget http://www.vicbioinformatics.com/prokka-1.11.tar.gz \
&& mv scripts/*.sh /home/imp/lib/. \ && mv scripts/*.sh /home/imp/lib/. \
&& cd .. && rm -rf sortmerna* \ && cd .. && rm -rf sortmerna* \
&& cd /home/imp/lib && cd /home/imp/lib
# Bedtools
RUN git clone https://github.com/arq5x/bedtools2.git
&& cd bedtools2/
&& git checkout v2.22.0
&& make
# bh_tsne # bh_tsne
RUN cd /home/imp/tmp \ RUN cd /home/imp/tmp \
&& git clone https://github.com/claczny/VizBin.git \ && git clone https://github.com/claczny/VizBin.git \
......
...@@ -257,7 +257,7 @@ if(typeof IMP_STATS !== 'undefined') { ...@@ -257,7 +257,7 @@ if(typeof IMP_STATS !== 'undefined') {
// ht_stats // ht_stats
renderStatsCarousel("carousel-mg-raw", "MG/stats", [ renderStatsCarousel("carousel-mg-raw", "Preprocessing/stats/MG", [
"cycle_composition_2.png", "cycle_composition_2.png",
"cycle_quality_1.png", "cycle_quality_1.png",
"cycle_quality_2.png", "cycle_quality_2.png",
...@@ -270,7 +270,7 @@ renderStatsCarousel("carousel-mg-raw", "MG/stats", [ ...@@ -270,7 +270,7 @@ renderStatsCarousel("carousel-mg-raw", "MG/stats", [
"reads_quality.png" "reads_quality.png"
]); ]);
renderStatsCarousel("carousel-mg-preprocessed", "MG/stats_after_preprocessing", [ renderStatsCarousel("carousel-mg-preprocessed", "Preprocessing/stats_after_preprocessing/MG", [
"cycle_composition_2.png", "cycle_composition_2.png",
"cycle_quality_1.png", "cycle_quality_1.png",
"cycle_quality_2.png", "cycle_quality_2.png",
...@@ -283,7 +283,7 @@ renderStatsCarousel("carousel-mg-preprocessed", "MG/stats_after_preprocessing", ...@@ -283,7 +283,7 @@ renderStatsCarousel("carousel-mg-preprocessed", "MG/stats_after_preprocessing",
"reads_quality.png" "reads_quality.png"
]); ]);
renderStatsCarousel("carousel-mt-raw", "MT/stats", [ renderStatsCarousel("carousel-mt-raw", "Preprocessing/stats/MT", [
"cycle_composition_2.png", "cycle_composition_2.png",
"cycle_quality_1.png", "cycle_quality_1.png",
"cycle_quality_2.png", "cycle_quality_2.png",
...@@ -296,7 +296,7 @@ renderStatsCarousel("carousel-mt-raw", "MT/stats", [ ...@@ -296,7 +296,7 @@ renderStatsCarousel("carousel-mt-raw", "MT/stats", [
"reads_quality.png" "reads_quality.png"
]); ]);
renderStatsCarousel("carousel-mt-preprocessed", "MT/stats_after_preprocessing", [ renderStatsCarousel("carousel-mt-preprocessed", "Preprocessing/stats_after_preprocessing/MT", [
"cycle_composition_2.png", "cycle_composition_2.png",
"cycle_quality_1.png", "cycle_quality_1.png",
"cycle_quality_2.png", "cycle_quality_2.png",
...@@ -309,12 +309,12 @@ renderStatsCarousel("carousel-mt-preprocessed", "MT/stats_after_preprocessing", ...@@ -309,12 +309,12 @@ renderStatsCarousel("carousel-mt-preprocessed", "MT/stats_after_preprocessing",
"reads_quality.png" "reads_quality.png"
]); ]);
renderSimpleCarousel('carousel-assembly', 'MGMT/results', [ renderSimpleCarousel('carousel-assembly', 'Analysis/results', [
'IMP-vizbin_length.png', 'IMP-vizbin_length.png',
'IMP-vizbin_length_GC.png' 'IMP-vizbin_length_GC.png'
]); ]);
renderSimpleCarousel('carousel-mapping', 'MGMT/results', [ renderSimpleCarousel('carousel-mapping', 'Analysis/results', [
'IMP-reads_density.png', 'IMP-reads_density.png',
'IMP-rpkm_density.png', 'IMP-rpkm_density.png',
'IMP-coverage_density.png', 'IMP-coverage_density.png',
...@@ -325,12 +325,12 @@ renderSimpleCarousel('carousel-mapping', 'MGMT/results', [ ...@@ -325,12 +325,12 @@ renderSimpleCarousel('carousel-mapping', 'MGMT/results', [
'IMP-vizbin_length_MTdepth.png' 'IMP-vizbin_length_MTdepth.png'
]); ]);
renderSimpleCarousel('carousel-ration', 'MGMT/results', [ renderSimpleCarousel('carousel-ration', 'Analysis/results', [
'IMP-vizbin_length_depthRatio.png', 'IMP-vizbin_length_depthRatio.png',
'IMP-vizbin_length_rpkmRatio.png' 'IMP-vizbin_length_rpkmRatio.png'
]); ]);
renderSimpleCarousel('carousel-variant', 'MGMT/results', [ renderSimpleCarousel('carousel-variant', 'Analysis/results', [
'IMP-var_count.png', 'IMP-var_count.png',
'IMP-var_density.png', 'IMP-var_density.png',
'IMP-vizbin_length_MGvardens.png', 'IMP-vizbin_length_MGvardens.png',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment