-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# OMH code | ||
|
||
This is a proof of concept implementation of the OMH method. | ||
The code is release under the BSD license. | ||
|
||
# Compilation | ||
|
||
## From release tarball | ||
|
||
It is easiest to compile from the [release](https://github.com/Kingsford-Group/omhismb2019/releases). | ||
After downloading and untarring the source release package, compile with (replace `/path/to/installation` with the correct path): | ||
|
||
```Shell | ||
./configure --prefix=/path/to/installation | ||
make | ||
make install | ||
``` | ||
|
||
The library [xxhash](https://github.com/Cyan4973/xxHash) is required. | ||
To run the unit tests with `make check`, [gtest](https://github.com/google/googletest) is required. | ||
|
||
## From git tree | ||
|
||
When compiling from the git tree, [yaggo](https://github.com/gmarcais/yaggo/releases) is an additional dependency (download the `yaggo` script and copy it in your path). | ||
Then compile with: | ||
|
||
```Shell | ||
autoreconf -fi | ||
./configure --prefix=/path/to/installation | ||
make | ||
make install | ||
``` |