Skip to content

Commit

Permalink
Bumped version number to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alneberg committed Nov 22, 2018
1 parent 2eeb163 commit 2ca4d1a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## CONCOCT 0.4.1 [![Build Status](https://travis-ci.org/BinPro/CONCOCT.png?branch=master)](https://travis-ci.org/BinPro/CONCOCT)
## CONCOCT 0.4.2 [![Build Status](https://travis-ci.org/BinPro/CONCOCT.png?branch=master)](https://travis-ci.org/BinPro/CONCOCT)

A program for unsupervised binning of metagenomic contigs by using nucleotide composition,
coverage data in multiple samples and linkage data from paired end reads.
Expand Down
18 changes: 9 additions & 9 deletions doc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Docker for CONCOCT (http://github.com/BinPro/CONCOCT) v0.4.1
# VERSION 0.4.1
# Docker for CONCOCT (http://github.com/BinPro/CONCOCT) v0.4.2
# VERSION 0.4.2
#
# This docker creates and sets up an Ubuntu environment with all
# dependencies for CONCOCT v0.4.1 installed.
# dependencies for CONCOCT v0.4.2 installed.
#
# To login to the docker with a shared directory from the host do:
#
# sudo docker run -v /my/host/shared/directory:/my/docker/location -i -t binnisb/concoct_0.4.1 /bin/bash
# sudo docker run -v /my/host/shared/directory:/my/docker/location -i -t binnisb/concoct_0.4.2 /bin/bash
#

FROM ubuntu:13.10
Expand Down Expand Up @@ -83,16 +83,16 @@ RUN cd /opt;\
printf "install.packages(\"ggplot2\", repo=$RREPO)\ninstall.packages(\"reshape\",repo=$RREPO)\ninstall.packages(\"gplots\",repo=$RREPO)\ninstall.packages(\"ellipse\",repo=$RREPO)\ninstall.packages(\"grid\",repo=$RREPO)\ninstall.packages(\"getopt\",repo=$RREPO)" > dep.R;\
Rscript dep.R

# Install python dependencies and fetch and install CONCOCT 0.4.1
# Install python dependencies and fetch and install CONCOCT 0.4.2
RUN cd /opt;\
conda update --yes conda;\
conda install --yes python=2.7 atlas cython numpy scipy biopython pandas pip scikit-learn pysam;\
pip install bcbio-gff;\
wget --no-check-certificate https://github.com/BinPro/CONCOCT/archive/0.4.1.tar.gz;\
tar xf 0.4.1.tar.gz;\
cd CONCOCT-0.4.1;\
wget --no-check-certificate https://github.com/BinPro/CONCOCT/archive/0.4.2.tar.gz;\
tar xf 0.4.2.tar.gz;\
cd CONCOCT-0.4.2;\
python setup.py install

ENV CONCOCT /opt/CONCOCT-0.4.1
ENV CONCOCT /opt/CONCOCT-0.4.2
ENV CONCOCT_TEST /opt/Data/CONCOCT-test-data
ENV CONCOCT_EXAMPLE /opt/Data/CONCOCT-complete-example
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
# The short X.Y version.
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.4.1'
release = '0.4.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys, os
from distutils.core import Extension

version = '0.4.1'
version = '0.4.2'

module1 = Extension('vbgmm',
libraries =['gsl', 'gslcblas'],
Expand Down

0 comments on commit 2ca4d1a

Please sign in to comment.