-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
27 lines (27 loc) · 1.3 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
matrix:
include:
- os: linux
dist: trusty
sudo: required
language: python
python: 2.7
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgsl0-dev libgmp-dev libmpfr-dev libsqlite0-dev
- wget http://abacus.gene.ucl.ac.uk/software/indelible/EFBKqHdv0v7qir6CyeHgqaz/INDELibleV1.03.tar.gz
- git clone https://github.com/adamallo/SimPhy simphy
- git clone https://github.com/merlyescalona/simphycompress simphycompress
- tar -zxf INDELibleV1.03.tar.gz
- pushd simphy && make && make clean && popd
- pushd simphycompress && python setup.py install && popd
- pushd INDELibleV1.03/src && rm MersenneTwister.h && wget https://raw.githubusercontent.com/merlyescalona/indelible-ngsphy/master/src/MersenneTwister.h && g++ -o indelible -O4 indelible.cpp && popd
- export PATH=$PATH:$(pwd)/simphy/bin
- export PATH=$PATH:$(pwd)/INDELibleV1.03/src
- pip install -r requirements.txt
- pip install nose codecov
install:
- python setup.py install
script:
- test/data.simulation.sh
after_success:
- codecov