-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into HEAD
- Loading branch information
Showing
55 changed files
with
884 additions
and
1,012 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
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
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 was deleted.
Oops, something went wrong.
Submodule gbwt
updated
13 files
+1 −1 | LICENSE | |
+12 −3 | Makefile | |
+42 −0 | VERSION2.md | |
+23 −1 | include/gbwt/metadata.h | |
+3 −1 | include/gbwt/utils.h | |
+1 −0 | src/build_gbwt.cpp | |
+1 −0 | src/build_ri.cpp | |
+1 −0 | src/merge_gbwt.cpp | |
+46 −11 | src/metadata.cpp | |
+1 −0 | src/metadata_tool.cpp | |
+1 −0 | src/remove_seq.cpp | |
+12 −3 | tests/Makefile | |
+169 −11 | tests/test_metadata.cpp |
Submodule gbwtgraph
updated
24 files
+1 −0 | .gitignore | |
+16 −13 | Makefile | |
+12 −2 | README.md | |
+15 −0 | include/gbwtgraph/algorithms.h | |
+1 −0 | include/gbwtgraph/gbwtgraph.h | |
+104 −8 | include/gbwtgraph/internal.h | |
+213 −0 | include/gbwtgraph/subgraph.h | |
+28 −1 | include/gbwtgraph/utils.h | |
+221 −0 | src/algorithms.cpp | |
+344 −0 | src/gbz_extract.cpp | |
+1 −0 | src/gbz_stats.cpp | |
+4 −0 | src/gfa.cpp | |
+1 −0 | src/gfa2gbwt.cpp | |
+23 −0 | src/internal.cpp | |
+3 −1 | src/kmer_freq.cpp | |
+684 −0 | src/subgraph.cpp | |
+213 −0 | src/subgraph_query.cpp | |
+47 −21 | src/utils.cpp | |
+15 −12 | tests/Makefile | |
+25 −0 | tests/gfas/fragmented.gfa | |
+19 −32 | tests/shared.h | |
+215 −0 | tests/test_algorithms.cpp | |
+720 −0 | tests/test_subgraph.cpp | |
+4 −6 | tests/test_utils.cpp |
Submodule gcsa2
updated
7 files
+12 −3 | Makefile | |
+12 −3 | benchmark/Makefile | |
+3 −1 | include/gcsa/utils.h | |
+2 −1 | src/build_gcsa.cpp | |
+1 −0 | src/convert_graph.cpp | |
+1 −0 | src/gcsa_format.cpp | |
+1 −0 | src/try_extend.cpp |
Submodule libbdsg
updated
6 files
Submodule sdsl-lite
updated
35 files
Submodule wiki
updated
from f70ea3 to f28a1e
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,4 @@ | ||
export LIBRARY_PATH=`pwd`/lib:$LIBRARY_PATH | ||
export LD_LIBRARY_PATH=`pwd`/lib:$LD_LIBRARY_PATH | ||
export DYLD_LIBRARY_PATH=`pwd`/lib:$DYLD_LIBRARY_PATH | ||
export LD_INCLUDE_PATH=`pwd`/include:$LD_INCLUDE_PATH | ||
# Setting include directories via C_INCLUDE_PATH/CPLUS_INCLUDE_PATH will | ||
# automatically get them demoted to the end of the search list even if a -I | ||
# option is passed to try and bump them up earlier, before other -I options. | ||
# We leave the Makefile in charge of finding all the include directories. | ||
export CFLAGS="-I $(pwd)/include ${CFLAGS}" | ||
export CXXFLAGS="-I $(pwd)/include -I$(pwd)/include/dynamic ${CXXFLAGS}" | ||
export PATH=`pwd`/bin:`pwd`/scripts:"$PATH" | ||
export CC=$(which gcc) | ||
export CXX=$(which g++) | ||
|
||
# | ||
# disable until file arguments work as in normal bash :( | ||
# | ||
# add bash autocompletion | ||
#if test -n "$BASH_VERSION" | ||
#then | ||
# | ||
# . ./autocomp.bash | ||
#fi | ||
# We used to have a script here to set up all the include and library search | ||
# paths for the vg build. But now the Makefile knows how to do it all for the | ||
# build, and the vg binary knows where to look for its dynamic libraries. | ||
echo 1>&2 "Sourcing source_me.sh is no longer necessary" |
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.
a14a8d5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
vg CI tests complete for branch lr-giraffe. View the full report here.
14 tests passed, 0 tests failed and 0 tests skipped in 15134 seconds