Skip to content

Commit

Permalink
simplify install procedure
Browse files Browse the repository at this point in the history
  • Loading branch information
bbsunchen committed Aug 13, 2018
1 parent d0427c1 commit 5d268e4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
17 changes: 3 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,13 @@ Fase SNP genotyping tool for whole genome sequencing data and large SNP database
- A 64-bit operating system. Either Mac OS X or Linux are currently supported.

# Quick Install

VarGeno requires the SDSL library. If you do not have it already installed, please use the following commands.

```
git clone https://github.com/simongog/sdsl-lite.git
cd sdsl-lite
./install.sh
```
This installs the sdsl library into the `include` and `lib` directories in your home directory.

To install VarGeno itself,

```
git clone https://github.com/medvedevgroup/vargeno.git
cd vargeno
make all
export PREFIX=$HOME
bash ./install.sh
```
You should then see `vargeno`, `gbf` in vargeno directory. To verify that your installation is correct, you can run the toy example below.
You should then see `vargeno` in vargeno directory. To verify that your installation is correct, you can run the toy example below.

# Quick Usage

Expand Down
4 changes: 4 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
chmod +x ./sdsl-lite/install.sh ./sdsl-lite/build/*.sh
./sdsl-lite/install.sh $PREFIX
make all

0 comments on commit 5d268e4

Please sign in to comment.