Skip to content

Commit 39be3a6

Browse files
committed
[CLI] improve progress reporting and cleanup
1 parent 34db067 commit 39be3a6

5 files changed

Lines changed: 193 additions & 259 deletions

File tree

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ add_executable (lambda_indexer lambda_indexer.cpp
125125
lambda_indexer.hpp
126126
options.hpp
127127
lambda_indexer_misc.hpp
128-
index_sa_sort.h)
128+
radix_inplace.h)
129129

130130
# Add dependencies found by find_package (SeqAn).
131131
target_link_libraries (lambda ${SEQAN_LIBRARIES})

src/index_sa_sort.h

Lines changed: 0 additions & 231 deletions
This file was deleted.

src/lambda.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,6 @@ int main(int argc, char const ** argv)
149149
if (res != seqan::ArgumentParser::PARSE_OK)
150150
return res == seqan::ArgumentParser::PARSE_ERROR;
151151

152-
// std::cout << "Match sizeof : " << sizeof(Match)
153-
// << "\n alignof: " << alignof(Match)
154-
// << "\n is_trivial: " << std::is_trivial<Match>::value
155-
// // << "\ntrivially_copy: " << std::is_trivially_copyable<Match>::value
156-
// << "\n";
157-
158152
if (std::string(CMAKE_BUILD_TYPE) != "Release")
159153
std::cerr << "WARNING: This binary is not built in release mode and will be much slower than it should be!\n";
160154
return argConv0(options);

0 commit comments

Comments
 (0)