-
Notifications
You must be signed in to change notification settings - Fork 10
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
15 additions
and
6 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 |
---|---|---|
|
@@ -11,22 +11,31 @@ Please see the [documentation](http://deploid.readthedocs.io/en/latest/) for fur | |
Installation | ||
------------ | ||
|
||
You can also install `dEploid` directly from the git repository. Here, you need to install `autoconf` first: | ||
You can also install `dEploid` directly from the git repository. Here, you will need `autoconf`, check whether this is already installed by running: | ||
```bash | ||
$ which autoconf | ||
``` | ||
|
||
On Debian/Ubuntu based systems: | ||
```bash | ||
apt-get install build-essential autoconf autoconf-archive libcppunit-dev | ||
$ apt-get install build-essential autoconf autoconf-archive libcppunit-dev | ||
``` | ||
|
||
On Mac OS: | ||
```bash | ||
port install automake autoconf autoconf-archive cppunit | ||
$ port install automake autoconf autoconf-archive cppunit | ||
``` | ||
|
||
Afterwards you can clone the code from the github repository, | ||
```bash | ||
$ git clone [email protected]:mcveanlab/DEploid.git | ||
$ cd DEploid | ||
``` | ||
|
||
Afterwards you can build the binary using | ||
and build the binary using | ||
```bash | ||
./bootstrap | ||
make | ||
$ ./bootstrap | ||
$ make | ||
``` | ||
|
||
Usage | ||
|