Skip to content

Commit

Permalink
Merge pull request #1 from mshakya/master
Browse files Browse the repository at this point in the history
all my changes
  • Loading branch information
chienchi authored Jun 26, 2018
2 parents 81505f5 + 88e07d3 commit 785be4a
Show file tree
Hide file tree
Showing 121 changed files with 2,370,094 additions and 4,448 deletions.
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
install.log
test/results/
test/.DS_Store
test/contigs_list.txt
test/fasta_list.txt
test/working_list.txt
src/.DS_Store
.DS_Store
test/workdirs/ebola_comp_contigs_pread/
test/workdirs/
2NG.dN
2NG.dS
2NG.t
4fold.nuc
PhaME-1.sublime-project
PhaME-1.sublime-workspace
lnf
rst
rst1
rub
sftp-config.json
thirdParty/miniconda/
thirdParty/hyphy-2.3.11/
thirdParty/messages.log
thirdParty/evolver.out
thirdParty/errors.log
messages.log
26 changes: 26 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
sudo: required
language: perl
perl:
- "5.16"

before_install:
# - eval "${MATRIX_EVAL}"
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get -y install -qq gcc-5 g++-5
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5

install:
- ./INSTALL.sh
- export PATH="$HOME/build/mshakya/PhaME-1/thirdParty/miniconda/bin:$PATH"

before_script:
- cpanm --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov

script:
- source activate phame
- test/TestAll.sh
- cover -test

after_success:
- cover -report codecov
32 changes: 32 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This is the Dockefile to build PhaME

############################# Base Docker Image ################################

FROM ubuntu:16.04

############################# MAINTAINER #######################################

MAINTAINER Migun Shakya <[email protected]>

############################# METADATA #######################################

LABEL version="1.0"
LABEL software="PhaME"
LABEL description="Phylogenetic Analysis and Molecular Evolution"
LABEL website="https://github.com/mshakya/PhaME-1"
LABEL tags="genomics"

############################# INSTALLATION #####################################

RUN apt-get -y update --fix-missing
RUN apt-get install -y wget bzip2 ca-certificates libglib2.0-0 libxext6 libsm6 \
libxrender1 git curl make gcc gfortran g++ grep unzip cmake libcurl4-gnutls-dev \
ocl-icd-opencl-dev mpich doxygen libssl-dev
RUN apt-get -y upgrade
RUN apt-get clean
RUN git clone https://github.com/mshakya/PhaME-1.git
WORKDIR /PhaME-1
RUN ./INSTALL.sh
ENV PATH="/PhaME-1/thirdParty/miniconda/bin:/PhaME-1/src:${PATH}"
# RUN sh test/TestAll.sh
#############################ENVIRONMENT#####################################
Loading

0 comments on commit 785be4a

Please sign in to comment.