From fd0cd037514638a2c9e328b66971694ab1a00ed6 Mon Sep 17 00:00:00 2001 From: Joe Zhu Date: Sun, 28 Aug 2016 18:05:30 +0100 Subject: [PATCH] update README --- README.md | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cd06ab73..77e80e4b 100644 --- a/README.md +++ b/README.md @@ -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 git@github.com:mcveanlab/DEploid.git +$ cd DEploid ``` -Afterwards you can build the binary using +and build the binary using ```bash -./bootstrap -make +$ ./bootstrap +$ make ``` Usage