-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from ComparativeGenomicsToolkit/update-deps
Switch output format from protobuf to HandleGraph
- Loading branch information
Showing
18 changed files
with
1,051 additions
and
413 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
[submodule "deps/hal"] | ||
path = deps/hal | ||
url = https://github.com/glennhickey/hal.git | ||
url = https://github.com/ComparativeGenomicsToolkit/hal.git | ||
[submodule "deps/sonLib"] | ||
path = deps/sonLib | ||
url = https://github.com/benedictpaten/sonLib.git | ||
url = https://github.com/ComparativeGenomicsToolkit/sonLib.git | ||
[submodule "deps/hal2sg"] | ||
path = deps/hal2sg | ||
url = https://github.com/glennhickey/hal2sg.git | ||
[submodule "deps/libbdsg-easy"] | ||
path = deps/libbdsg-easy | ||
url = https://github.com/vgteam/libbdsg-easy.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Control file for continuous integration testing at http://travis-ci.org/ | ||
|
||
language: cpp | ||
compiler: gcc | ||
|
||
before_install: | ||
- git submodule update --init --recursive | ||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install libomp; fi | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libhdf5-serial-dev python3 python3-pip libpython3-dev wget; fi | ||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install hdf5 python3.6 python3-pip || echo "a brew error code when installing gcc is expected"; fi | ||
|
||
install: | ||
- sudo pip3 install setuptools --upgrade | ||
- wget https://github.com/vgteam/vg/releases/download/v1.24.0/vg && chmod u+x vg | ||
|
||
script: | ||
- export PATH=$(pwd):$PATH | ||
- export PATH=$(pwd)/deps/hal/bin:$PATH | ||
- make test | ||
|
||
dist: bionic | ||
osx_image: xcode10.1 | ||
|
||
matrix: | ||
include: | ||
- os: linux | ||
compiler: gcc | ||
#- os: osx | ||
# compiler: clang | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule libbdsg-easy
added at
537567
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.