Commit 49f7eae0 authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 1.5.6

parent 3a219834
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -5,9 +5,13 @@ addons:
    - zlib1g-dev
    - libncurses5-dev
python:
  - "3.4"
  - 3.4
sudo: false
install:
  - "source ./install_dependencies.sh"
  - source ./install_dependencies.sh
before_script:
  - pip install codecov
script:
  - "python setup.py test"
  - coverage run setup.py test
after_success:
  - codecov

CHANGELOG.md

0 → 100644
+365 −0

File added.

Preview size limit exceeded, changes collapsed.

Dockerfile

0 → 100644
+28 −0
Original line number Diff line number Diff line
# This container will install Circlator from master
#
FROM debian:testing

ENV   BUILD_DIR=/opt/circlator

# Install the dependancies
RUN   apt-get update -qq && apt-get install -y python python3-pip git wget unzip zlib1g-dev libncurses5-dev

RUN   apt-get install --yes libbz2-dev liblzma-dev

RUN   mkdir -p ${BUILD_DIR}
COPY  . ${BUILD_DIR}

RUN   cd ${BUILD_DIR} && ./install_dependencies.sh
ENV   PATH ${BUILD_DIR}/build/bwa-0.7.12:${BUILD_DIR}/build/canu-1.4/Linux-amd64/bin/:${BUILD_DIR}/build/prodigal-2.6.2:${BUILD_DIR}/build/samtools-1.3:${BUILD_DIR}/build/MUMmer3.23:${BUILD_DIR}/build/SPAdes-3.7.1-Linux/bin:$PATH
RUN   export PATH
RUN   cd ${BUILD_DIR} && python3 setup.py install

RUN   circlator progcheck

CMD   echo "Usage:  docker run -v \`pwd\`:/var/data -it <IMAGE_NAME> bash" && \
      echo "" && \
      echo "This will place you in a shell with your current working directory accessible as /var/data." && \
      echo "You can then run commands like:" && \
      echo "   circlator all /var/data/assembly.fasta /var/data/reads /var/data/<output_subdirectory>" && \
      echo "For help, please go to https://github.com/sanger-pathogens/circlator/wiki, or type" && \
      echo "   circlator --help"
+82 −5

File changed.

Preview size limit exceeded, changes collapsed.

install_dependencies.sh

100644 → 100755
+0 −0

File mode changed from 100644 to 100755.