Skip to content

Latest commit

 

History

History
58 lines (42 loc) · 1.03 KB

File metadata and controls

58 lines (42 loc) · 1.03 KB

Bioinformatics - project

Project name: A representation of a compressed de Bruijn graph for pan-genome analysis that enables search (Beller and Ohlebusch, 2016)

Goals: Implementation of algorithms A1 and A2 and comparison with the original implementation (https://www.uni-ulm.de/in/theo/research/seqana.html)

Original paper: https://almob.biomedcentral.com/articles/10.1186/s13015-016-0083-7

Course website: http://www.fer.unizg.hr/predmet/bio

Installation

Install cmake (Version 3.10.1)

cd REPO_NAME/install
tar -xzvf cmake-3.10.1.tar.gz
cd cmake-3.10.1
sudo ./bootstrap --prefix=/usr
sudo make install

Install sdsl-lite

cd REPO_NAME/install
tar -xzvf sdsl-lite.tar.gz
cd sdsl-lite/
sudo ./install.sh /usr/local

Compiling

mkdir build
cd build
cmake --target debruijn.exe ..
make -j4

Running

cd REPO_NAME
./debruijn.exe input/XXX.fa -k=<Integer> --printMode

--printMode
	--originalPrint
	--lastYearPrint
	<without argument>	- print in file

Testing

cd REPO_NAME
./test.sh