Skip to content

Commit 42de25b

Browse files
author
Lasse Maretty
committed
BayesTyper (v1.0)
1 parent 403fa6d commit 42de25b

File tree

583 files changed

+16091
-44098
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

583 files changed

+16091
-44098
lines changed

CMakeLists.txt

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
cmake_minimum_required(VERSION 2.8.0)
2+
3+
execute_process(
4+
COMMAND git rev-parse --abbrev-ref HEAD
5+
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
6+
OUTPUT_VARIABLE GIT_BRANCH
7+
OUTPUT_STRIP_TRAILING_WHITESPACE
8+
)
9+
10+
execute_process(
11+
COMMAND git rev-parse HEAD
12+
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
13+
OUTPUT_VARIABLE GIT_LAST_COMMIT_HASH
14+
OUTPUT_STRIP_TRAILING_WHITESPACE
15+
)
16+
17+
SET(CMAKE_CXX_FLAGS "--std=c++11 -g -Wall -O3 -DBT_VERSION='\"${GIT_BRANCH} ${GIT_LAST_COMMIT_HASH}\"' -lpthread")
18+
19+
FIND_PACKAGE(Boost COMPONENTS program_options system filesystem iostreams REQUIRED)
20+
message(STATUS ${Boost_LIBRARIES})
21+
add_subdirectory(${CMAKE_SOURCE_DIR}/src/vcf++)
22+
add_subdirectory(${CMAKE_SOURCE_DIR}/src/bayesTyper)
23+
add_subdirectory(${CMAKE_SOURCE_DIR}/src/bayesTyperTools)
24+
add_subdirectory(${CMAKE_SOURCE_DIR}/src/bayesTyperTools/scripts)

bayesTyper/kmc_api/kmc_file.o

-26.8 KB
Binary file not shown.

bayesTyper/kmc_api/kmer_api.o

-2.18 KB
Binary file not shown.

bayesTyper/kmc_api/mmer.o

-2.86 KB
Binary file not shown.

bayesTyper/src/CMakeLists.txt

-22
This file was deleted.

bayesTyper/src/CountAllocation.cpp

-91
This file was deleted.

0 commit comments

Comments
 (0)