This is the source code repository for IMSEQ. For information about IMSEQ and release downloads visit www.imtools.org!
These instructions apply if you want to build IMSEQ from the git repository.
- A C++14 capable compiler
- ZLIB
Clone the repository
$ git clone https://github.com/lkuchenb/imseq.git
$ cd imseq
Configure a build directory
$ mkdir build
$ cd build
$ cmake ..
Build IMSEQ
$ make imseq
- Cmake will attempt to download the SeqAn Library. If this fails or you want to use your own copy of SeqAn, invoke cmake with
-DSEQAN_ROOT=/path/to/seqan
. - If you want to use a compiler different from your systems default compiler, invoke cmake with
-DCMAKE_CXX_COMPILER=/path/to/c++